Payout
Commit payout transaction
This PUT endpoint is used to commit a previously created payout transaction. <br> Once a payout transaction is created, you can use this endpoint to commit the transaction and initiate the actual payout. <br> To use this endpoint, you need to provide the user_token and payout_token of the payout transaction you want to commit in the URL Path. <br> The response will include a JSON object containing details about the committed payout transaction, including the payout_token, payout_status, pickup_code and possible errors.
put/payout/{user_token}/{payout_token}
Path parameters
user_tokenstring required
Token representing the user to pay out
payout_tokenstring required
Token representing the trsanaction. Retrieved from /payout/{user_token}
Headers
Idempotency-Keystring
Unique key to prevent duplicate processing
Response
successful operation
Example response
{
"payout_token": "123e4567-e89b-12d3-a456-426614174000",
"pickup_code": "54238173",
"errors": "Duplicate transfer"
}