Get Shop Order Detail
Retrieve detailed information for a single Shop order.
GET
/api/v1/shop/orders/{orderNumber}Description
Fetches full order details including decrypted shipping/billing fields, line items, destruction documents (buyback/ITAD), and tracking.
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_number | string | Order number. |
| order_status | string | Current status. |
| items[] | array | Line items. |
| documents | object | Attached documents by type (ITAD/buyback). |
| tracking | object | Carrier tracking details. |
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/shop/orders/174894512345 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"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_country": "US",
"shipping_state": "CA",
"shipping_city": "San Jose",
"shipping_zip": "95110",
"shipping_address": "500 Logistics Way",
"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": "MacBook Pro",
"type": "Laptop",
"qty": 2,
"subtotal": 0,
"year_manufactured": "2024"
}
],
"documents": [],
"tracking": {
"tracking_number": "1Z999AA10123456784",
"carrier": "UPS",
"status": "In Transit"
}
}