Initiates a payout request for the specified account.
Payout resource
source_payment_method_id required | string <= 36 characters The |
destination_payment_method_id required | string <= 36 characters The |
amount required | integer The amount requested to be paid out. Specified in the lowest denomination of the currency. For example, if currency is USD, an amount of $3.42 is represented as '342'. A payout fee is calculated and the actual amount to be paid out is returned in the response payload. Note that if |
currency required | string [ 3 .. 10 ] characters A currency code. May be either an ISO 4217 currency code, or a code representing your in-game token. Must be a supported currency. |
token_exchange_id | string <= 36 characters The TUID of a token exchange ID representing a previous token conversion. This associates the payout with this token conversion, so that if the payout is canceled then the token conversion will be reversed. |
Successfully creates a payout with status FUNDS-IN-ESCROW
that will be subject to review
Invalid input
Unauthorized access.
Too many payouts requested
Service unavailable or server error.
{- "source_payment_method_id": "pm_2V2bA0r2hJpUnCA9HeTgOl0rONr",
- "destination_payment_method_id": "pm_2V2bA0r2hJpUnCA9HeTgOl0rONr",
- "amount": 250,
- "currency": "string",
- "token_exchange_id": "vtok_2V2WX4AZZiE6eDoGb6coN0RuxIR"
}
{- "status": "Success",
- "message": null,
- "codes": null,
- "payload": {
- "payout_status_id": "682c8d3e-75ad-4d10-8b1a-1e1576888888",
- "credit_id": "a3c570da-b7f9-4f84-aa3e-7cbd4f555555",
- "account_id": "acct_2TiDFXHVFMlAuyy7ovvz3YPKv9b",
- "status": "ESCROW-TRANSFER-INITIATED",
- "payout_flow": "STANDARD",
- "created": "2020-09-16 16:15:42.343045",
- "updated": "2020-09-16 16:15:42.489163",
- "credit": {
- "destination_payment_method_id": "pm_2V2bA0r2hJpUnCA9HeTgOl0rONr",
- "amount": 250,
- "currency": "string",
- "status": "CREATED"
}
}
}