List Deployment Orders
Retrieve a paginated list of Deployment orders for your company.
GET
/api/v1/deployment/orders?page=1&limit=10Description
Returns Deployment orders with optional status and date filters. ITAD list returns orders with type ITAD; repair/deployment/shop use their respective order stores.
Request
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer <access_token> | Yes |
| Content-Type | application/json | Yes |
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| page | number | No | Page number. Default is 1. |
| limit | number | No | Records per page. Default is 10 (tickets/wallet max 100). |
| status | string | No | Filter by order status (e.g. IN TRANSIT, COMPLETED). |
| start_date | string | No | Orders on or after this date (YYYY-MM-DD). |
| end_date | string | No | Orders on or before this date (YYYY-MM-DD). |
Response
| Field | Type | Description |
|---|---|---|
| totalOrders | number | Total matching orders. |
| totalPages | number | Total pages. |
| currentPage | number | Current page. |
| orders[] | array | Order objects with shipping, billing, items, documents, and tracking. |
| orders[].order_number | string | Unique order number. |
| orders[].order_status | string | Human-readable status. |
| orders[].items[] | array | Line items (fields vary by order type). |
| orders[].tracking | object | Shipment tracking when available. |
Notes
- Default page size is 10.
- status filter is matched case-insensitively against order_status.
Related Endpoints
Did this page help you?
Request
curl -X GET https://uat.unduit.com/api-exposed/api/v1/deployment/orders?page=1&limit=10 \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"Success Response
{
"totalOrders": 1,
"totalPages": 1,
"currentPage": 1,
"orders": [
{
"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"
},
"type": "Deployment",
"order_type": "Deployment"
}
]
}