Payout History
Request Body
Name
Type
Description
{
"result": integer, // The result code indicates the success or failure of the request.
"message": string, // A message providing additional information about the result.
"data": [
{
"id": string, // The unique identifier of the payout transaction.
"address": string, // The recipient's cryptocurrency address for the payout.
"currency": string, // The cryptocurrency symbol of the payout.
"network": string, // The blockchain network associated with the cryptocurrency.
"amount": string, // The amount of cryptocurrency sent in the payout.
"fee": string, // The transaction fee (if any) associated with the payout.
"status": string, // The status of the payout transaction (e.g., \"complete\", \"processing\", \"rejected\").
"type": string, // The type of the payout (e.g., \"internal\" or \"external\").
"txID": string, // The transaction ID of the payout on the blockchain (if available).
"date": string, // The timestamp of the payout transaction in Unix time format.
"description": string // Additional information or description related to the payout transaction.
}
],
"meta": {
"size": integer, // The number of payout transactions returned in the current page.
"page": integer, // The current page number of the result set.
"pages": integer, // The total number of pages available based on the number of records and page size.
"total": integer // The total number of payout transactions available for the specified criteria.
}
}
Example codes
Last updated