- CancellationRequest
- What you can do with CancellationRequest
- Endpoints
- Sends a cancellation request to the fulfillment service of a fulfillment order and updates the fulfillment order
- Accepts a cancellation request sent to a fulfillment service and updates the fulfillment order
- Rejects a cancellation request sent to a fulfillment service and updates the fulfillment order
CancellationRequest
The CancellationRequest resource represents a cancellation request made by the merchant to a fulfillment service for a fulfillment order.
What you can do with CancellationRequest
The Shopify API lets you do the following with the CancellationRequest resource. More detailed versions of these general actions may be available:
- POST /admin/api/2021-01/fulfillment_orders/{fulfillment_order_id}/cancellation_request.jsonSends a cancellation request
- POST /admin/api/2021-01/fulfillment_orders/{fulfillment_order_id}/cancellation_request/accept.jsonAccepts a cancellation request
- POST /admin/api/2021-01/fulfillment_orders/{fulfillment_order_id}/cancellation_request/reject.jsonRejects a cancellation request
Endpoints
POST/admin/api/2021-01/fulfillment_orders/{fulfillment_order_id}/cancellation_request.json Sends a cancellation request to the fulfillment service of a fulfillment order.message | An optional reason for the cancellation request. |
---|---|
Sends a cancellation request to the fulfillment service of a fulfillment order and updates the fulfillment order
POST /admin/api/2021-01/fulfillment_orders/1046000829/cancellation_request.json
{
“cancellation_request”: {
"message": "The customer changed his mind."
}
}
POST/admin/api/2021-01/fulfillment_orders/{fulfillment_order_id}/cancellation_request/accept.json Accepts a cancellation request sent to a fulfillment service for a fulfillment order.message | An optional reason for accepting the cancellation request. |
---|---|
Accepts a cancellation request sent to a fulfillment service and updates the fulfillment order
POST /admin/api/2021-01/fulfillment_orders/1046000827/cancellation_request/accept.json
{
“cancellation_request”: {
"message": "We had not started any processing yet."
}
}
POST/admin/api/2021-01/fulfillment_orders/{fulfillment_order_id}/cancellation_request/reject.json Rejects a cancellation request sent to a fulfillment service for a fulfillment order.message | An optional reason for rejecting the cancellation request. |
---|---|
Rejects a cancellation request sent to a fulfillment service and updates the fulfillment order
POST /admin/api/2021-01/fulfillment_orders/1046000828/cancellation_request/reject.json
{
“cancellation_request”: {
"message": "We have already send the shipment out."
}
}