Order Detail
Retrieve detailed information for a single Procurement order.
GET
/api/v1/shop/orders/{orderNumber}Description
Return the procurement 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_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
- Procurement list responses omit line items; fetch order detail for items[].
- order_status on list uses internal status timestamps; detail returns numeric order_status.
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": "174894576543",
"company_name": "Acme Corporation",
"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",
"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": "199.00",
"total_amount": "214.92",
"tax_amount": "15.92",
"order_status_date": "Jun 3rd, 2026",
"created_at": "Jun 3rd, 2026",
"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"
}
}
],
"order_status": 5,
"items": [
{
"item_number": "SKU-001",
"product_name": "USB-C Dock",
"sku_code": "SKU-001",
"sub_total": 199,
"discount": 0,
"qty": 1
}
],
"type": "Shop",
"order_type": "Shop"
}