Payout Callbacks

First, read general information about callbacks: Callbacks (Webhooks).

We will send a callback on the following events:

Event
Description

status_changed

This event is triggered when the payout status changes

Since we start processing your payout request, we will send a callback to your server. Here is an example of callbacks:

{
  "type": "payout",
  "event": "status_changed",
  "data": {
    "id": "01894a4e-d138-723a-835f-cec13d63b763",
    "customer_external_id": "[email protected]",
    "currency": "USDTMATIC",
    "transaction_hash": "0xebd868859d3d0736f724691bb1a4c41478b12914cdbde31159099af537f8efa7",
    "transaction_risk_score": null,
    "amount_requested": 5,
    "amount_sent": 4.949961,
    "fee_amount": 0.050039,
    "status": "complete",
    "status_reason": null
  },
  "timestamp": 1689168919
}

Last updated