PUT api/DeliveryOrder/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
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. |
Request Formats
application/json, text/json
Sample:
{
"Id": "bb0605c3-c2db-420b-b61f-d95b783fc9f9",
"StopID": "941be41a-ba85-4373-8d80-0e347cfe50cc",
"DeliveryDate": "2025-12-15T23:39:20.8765969-05:00",
"OrderNumber": "sample string 3",
"DeliveryStatus": 1,
"Updated": "2025-12-15T23:39:20.8765969-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:39:20.8765969-05:00</DeliveryDate> <DeliveryStatus>1</DeliveryStatus> <Id>bb0605c3-c2db-420b-b61f-d95b783fc9f9</Id> <IsDeleted>1</IsDeleted> <OrderNumber>sample string 3</OrderNumber> <StopID>941be41a-ba85-4373-8d80-0e347cfe50cc</StopID> <Updated>2025-12-15T23:39:20.8765969-05:00</Updated> </DeliveryOrderData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |