Cancel / Void Order
Learn how to cancel orders where funds have been authorized, but not settled
Overview
Use the Cancel/Void Order endpoint to cancel orders where funds have been authorized, but not settled.
This endpoint uses MAC with SHA-256
Check out our API Authentication section to learn more
To cancel an order, send an API call to:
POST {{baseUrl}}/{{orderId}}/cancel
API Response
Response Body Parameters
Parameter Name | Type | Description |
---|---|---|
status | string | Allowed Values = Cancelled, 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 cancel |
Response Body Example
{
"orderId": "string",
"merchantId": "string",
"amount": integer,
"transactionId": "string",
"status": "Cancelled",
"message": "string"
}
Updated 20 days ago
What’s Next