Order Detail
Retrieve detailed information for a single Repair order.
GET
/api/v1/repair/orders/{orderNumber}Description
Return the repair 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
- List uses last_update_date for the latest status change; detail uses order_status (uppercase string) and raw created_at.
- Repair line items use sub_total (not subtotal) and may include service_description, asset_tag, imei, and documents on list.
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/repair/orders/174894512345 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"order_number": "174894534567",
"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": "149.00",
"order_amount": "149.00",
"order_status": "IN PROCESS",
"created_at": "2026-06-03T10:00:00.000Z",
"items": [
{
"brand": "Apple",
"device": "Laptop",
"type": "MacBook Pro",
"sub_total": 149,
"service_description": "Screen replacement",
"asset_tag": "AST-1001",
"imei": null
}
],
"type": "Repair",
"order_type": "Repair"
}