Skip to main content
POST
/
api
/
v2
/
orders
/
{order_id}
/
cancellation
Cancel order
curl --request POST \
  --url https://live.nocnocstore.com/api/v2/orders/{order_id}/cancellation \
  --header 'X-Api-Key: <x-api-key>'
{}

Authorization

X-Api-Key
string
required
Your seller API key. Provided by your nocnoc account manager.

Path parameters

order_id
string
required
The ID of the order to cancel.

Returns

A confirmation that the cancellation request was submitted.

Example request

curl -X POST https://live.nocnocstore.com/api/v2/orders/ORD-123456/cancellation \
  -H "X-Api-Key: YOUR_SELLER_KEY"
{}