Order Detail
Retrieve detailed information for a single Deployment order.
GET
/api/v1/deployment/orders/{orderNumber}Description
Return the deployment 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. |
| tag | object | null | Accounting tags saved at place-order time. Null when no tags were provided. |
| tag.gl_code | string | GL code. |
| tag.po_number | string | PO number. |
| tag.site | string | Site. |
| tag.custom_field_1 | string | Custom field 1. |
| tag.custom_field_2 | string | Custom field 2. |
| tag.configure_cost_center | object | null | Resolved configure cost center details. |
| tag.configure_cost_center.cost_center_code | string | Cost center code. |
| tag.configure_cost_center.description | string | Cost center description. |
| tag.configure_cost_center.type | string | Cost center type. |
| tag.configure_department | object | null | Resolved configure department details. |
| tag.configure_department.department_name | string | Department name. |
Notes
- Deployment orders use Device Hub / marketplace line items (item_number, product_name, sku_code, sub_total, discount, qty).
- List uses last_update_date for the latest status timestamp; detail may include a tag object with cost center and department metadata.
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/deployment/orders/174894512345 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"order_number": "174894598765",
"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",
"billing_name": "Acme Corporation",
"billing_phone": "5551234567",
"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",
"tax_amount": "0.00",
"total_amount": "1299.00",
"order_amount": "1299.00",
"order_status": "In Process",
"last_update_date": "Jun 3rd, 2026",
"created_at": "Jun 3rd, 2026",
"items": [
{
"item_number": "DH-001",
"product_name": "MacBook Pro 14",
"sku_code": "DH-001",
"sub_total": 1299,
"discount": 0,
"qty": 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"
}
}
],
"tag": {
"gl_code": "6100",
"po_number": "PO-2026-100",
"site": "HQ",
"custom_field_1": "Project Atlas",
"custom_field_2": "Q3 onboard",
"configure_cost_center": {
"cost_center_code": "IT-OPS",
"description": "IT Operations",
"type": "opex"
},
"configure_department": {
"department_name": "Engineering"
}
},
"type": "Deployment",
"order_type": "Deployment"
}