Payout Reversal
Get status of a payout reversal
This GET endpoint is used to retrieve the status of a payout reversal transaction for a user with the specified token and payout reversal token. <br> You can use this endpoint to check whether a reversal has been successfully processed, partially applied, or if it encountered an error. <br> To use this endpoint, you need to provide the user_token, original payout_token and payout_reversal_token in the URL Path. <br> The response will include a JSON object containing details about the reversal transaction, including its status and any remaining reversible amount.
get/payout/{user_token}/{payout_token}/reversal/{payout_reversal_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
{
"original_destination_amount": 1000.34,
"total_reversed_amount": 10.2
}