For the complete documentation index, see llms.txt. This page is also available as Markdown.

Payout Callback

Register your Callback URL and get payout notification whenever Payout request status is DONE

Method and URL

POST {www.yourcompany.com}/payout_webhook_url

Request

Header Request

Parameter
Data Type
Requirement
Description

X-API-Key

String

M

Callback API Key, an additional API Key used specifically for receiving callbacks

Content-Type

String

M

application/JSON

Accept

String

M

application/JSON

Request Body for Bulk Payout

For more details about each transaction, please retrieve a payout.

{
  "event": "PAYOUT.DONE",
  "data": {
    "uuid": "d6a46a2c-1b26-40c5-9ca3-e063e69635a0",
    "merchantId": "922e39ab-7565-49f6-b84f-fb56122821ae",
    "payoutResults": {
      "totalPendingCount": 0,
      "totalPendingAmount": 0,
      "totalSuccessCount": 1,
      "totalSuccessAmount": 100000,
      "totalFailedCount": 0,
      "totalFailedAmount": 0,
      "totalCancelledCount": 0,
      "totalCancelledAmount": 0
    },
    "status": "DONE"
  }
}

Request Body for Single Payout

Detail Parameter Request

Parameter
Data Type
Requirement
Description

event

String

M

Bulk Payout Event Names:

  1. PAYOUT.DONE

  2. PAYOUT.PENDING

  3. PAYOUT.DELAYED

  4. PAYOUT.CANCELLED

Single Payout Event Names:

  1. PAYOUT.SUCCESS

  2. PAYOUT.FAILED

  3. PAYOUT.DELAYED

data

Object

M

Payout Object. Refers to Payout Object

Last updated