Cancel ITAD Order
Cancel an existing ITAD order within 2 hours of placement.
POST
/api/v1/itad/{order_id}/cancelDescription
Cancels a buyback ITAD order (no campaign_id). Cancellation is only allowed within 2 hours of order creation (UTC).
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| order_id | number | Yes | Internal buyback order ID (order_id from place-order response). |
Response
Related Endpoints
Did this page help you?
Request
curl -X POST https://uat.unduit.com/api-exposed/api/v1/itad/12345/cancel \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"message": "Order cancelled successfully",
"order_id": 12345,
"order_number": "174894512345"
}Error Responses
404 Not Found
{
"message": "Order not found",
"errors": { "cancelOrder": ["Order not found"] }
}