GET api/DeliveryOrder/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
DeliveryOrderData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| StopID | globally unique identifier |
Required |
|
| DeliveryDate | date |
Required |
|
| OrderNumber | string |
Required |
|
| DeliveryStatus | integer |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "ad07280e-815e-473d-bda5-7f79fd2247a0",
"StopID": "77bebae2-b0b2-4abf-a12e-1c8ad96f71cc",
"DeliveryDate": "2025-12-15T23:40:07.8746773-05:00",
"OrderNumber": "sample string 3",
"DeliveryStatus": 1,
"Updated": "2025-12-15T23:40:07.8746773-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<DeliveryOrderData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <DeliveryDate>2025-12-15T23:40:07.8746773-05:00</DeliveryDate> <DeliveryStatus>1</DeliveryStatus> <Id>ad07280e-815e-473d-bda5-7f79fd2247a0</Id> <IsDeleted>1</IsDeleted> <OrderNumber>sample string 3</OrderNumber> <StopID>77bebae2-b0b2-4abf-a12e-1c8ad96f71cc</StopID> <Updated>2025-12-15T23:40:07.8746773-05:00</Updated> </DeliveryOrderData>