Get ITAD Order Detail
Retrieve detailed information for a single ITAD order.
GET
/api/v1/itad/orders/{orderNumber}Description
Return the itad order details associated with the provided order number.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| orderNumber | string | Yes | Numeric order number (digits only). |
Response
| Field | Type | Description |
|---|---|---|
| order_id | string | Buyback order ID. |
| order_number | string | Order number. |
| order_status | string | number | Current status (string label or numeric code depending on order type). |
| items[] | array | Line items. |
| documents | object | Attached documents keyed by type (ITAD/Deployment buyback orders). |
| tracking | array | Carrier tracking details per shipment. |
Notes
- Use order_number from Place Order or the order list/detail responses for POST /api/v1/itad/{order_number}/cancel.
- List responses include type and order_type set to ITAD.
- documents is an object keyed by document type; each value is an array of { filename } download URLs.
- tracking is an array of shipment objects with carrier_name, forward_shipping, and return_shipping.
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/itad/orders/174894512345 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"order_id": "4829103-12345",
"order_number": "174894512345",
"company_name": "Acme Corporation",
"first_name": "Jane",
"last_name": "Smith",
"shipping_email": "it@acme.com",
"shipping_name": "Acme Corp IT",
"shipping_phone": "5551234567",
"shipping_apt": "Suite 200",
"shipping_country": "US",
"shipping_state": "CA",
"shipping_city": "San Jose",
"shipping_zip": "95110",
"shipping_address": "500 Logistics Way",
"billing_name": "Acme Corporation",
"billing_phone": "5551234567",
"billing_apt": "",
"billing_address": "100 Corporate Blvd",
"billing_city": "San Jose",
"billing_state": "CA",
"billing_zip": "95110",
"billing_country": "US",
"email": "jane.smith@acme.com",
"phone": "5551234567",
"currency_code": "USD",
"order_amount": "0.00",
"total_amount": "0.00",
"tax_amount": "0.00",
"payment_status": "Unpaid",
"order_status": "ORDER RECEIVED",
"order_status_date": "Jun 3rd, 2026",
"created_at": "Jun 3rd, 2026",
"items": [
{
"device_type": 4,
"brand": "Apple",
"device": "Laptop",
"type": "MacBook Pro",
"qty": 2,
"subtotal": 0,
"year_manufactured": "2024"
}
],
"documents": {
"Certificate of Destruction": [
{
"filename": "https://uat.unduit.com/api-exposed/download-my-file?path=storage/app/public/buyback_document/&filename=cert.pdf&is_encrypted=1"
}
]
},
"tracking": [
{
"carrier_name": "ups",
"forward_shipping": {
"tracking_number": null,
"tracking_link": null
},
"return_shipping": {
"return_tracking_number": "1Z999AA10123456784",
"return_tracking_link": "https://wwwapps.ups.com/WebTracking/processRequest?HTMLVersion=5.0&Requester=NES&loc=en_US&tracknum=1Z999AA10123456784"
}
}
],
"type": "ITAD",
"order_type": "ITAD"
}