DELETE
/
v1
/
orders
/
{sourceOrderId}
/
fulfillments
/
{sourceFulfillmentId}
curl --request DELETE \
  --url https://api.production.orderprotection.com/v1/orders/{sourceOrderId}/fulfillments/{sourceFulfillmentId} \
  --header 'Authorization: Bearer <token>'
{
  "status": "ok"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

sourceOrderId
string
required
sourceFulfillmentId
string
required

Response

200
application/json
The fulfillment has been successfully mark for cancelled.
status
string
required
Example:

"ok"