Reverse Order
Learn how to reverse a previously submitted transaction
Overview
Use this endpoint if you are unsure of the status of an order and want to cancel it or issue a refund. Authorization transactions will be reversed to cancel/void, and capture will be reversed to refund.
Important
A reversal can only be done in full. Partial amounts are not supported.
To Reverse an order, send an API call to:
POST{{baseUrl}}/{{orderId}}/reverse
API Response
Response Body Parameters
Parameter Name | Type | Description |
---|---|---|
status | string | Allowed Values = Reversed, Failed |
orderId | string | The Skipify order id |
amount | integer | The amount captured |
transactionId | string | The Skipify transaction identifier |
merchantId | string | The Skipify Merchant Identifier |
message | string, nullable | This message will be populated if there was an error processing the refund |
Response Body Example
{
"orderId": "string",
"merchantId": "string",
"amount": integer,
"transactionId": "string",
"status": "Reversed",
"message": "string"
}
Updated 20 days ago
What’s Next