Cancel / Void Order
Learn how to cancel orders where funds have been authorized, but not captured
Overview
Use the Cancel/Void Order endpoint to cancel orders where funds have been authorized, but not settled.
This endpoint uses HMAC with SHA-256
Check out our API Authentication section to learn more
To cancel an order, send an API call to:
Staging: POST https://stage-oms.skipify.com/{orderId}/cancel
Production: POST https://oms.skipify.com/{orderId}/cancel
API Response
Response Body Parameters
Parameter Name | Type | Description |
---|---|---|
orderId | string | The Skipify order id |
merchantId | string | The Skipify Merchant identifier |
transactionId | string | The Skipify transaction identifier |
status | string | Allowed Values = Cancelled, Failed |
message | string, nullable | This message will be populated if there was an error processing the cancel |
Response Body Example
{
"orderId": "string",
"merchantId": "string",
"transactionId": "string",
"status": "Cancelled",
"message": "string"
}
Updated 7 months ago
What’s Next