PUT api/DeliveryOrderItem/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
DeliveryOrderItemData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| DeliveryOrderID | globally unique identifier |
Required |
|
| ProductID | globally unique identifier |
Required |
|
| PackageID | globally unique identifier |
Required |
|
| Quantity | decimal number |
Required |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "19469a0f-fee9-4710-9d85-11badced5560",
"DeliveryOrderID": "96817411-5ccd-4b46-a8a3-d336a72e13b7",
"ProductID": "831fc549-6861-463a-ad23-0850880229e0",
"PackageID": "50e69c02-cc0e-4395-8f56-35a7b78cb60a",
"Quantity": 5.0,
"Updated": "2025-12-15T23:41:41.1802336-05:00",
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<DeliveryOrderItemData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <DeliveryOrderID>96817411-5ccd-4b46-a8a3-d336a72e13b7</DeliveryOrderID> <Id>19469a0f-fee9-4710-9d85-11badced5560</Id> <IsDeleted>1</IsDeleted> <PackageID>50e69c02-cc0e-4395-8f56-35a7b78cb60a</PackageID> <ProductID>831fc549-6861-463a-ad23-0850880229e0</ProductID> <Quantity>5</Quantity> <Updated>2025-12-15T23:41:41.1802336-05:00</Updated> </DeliveryOrderItemData>
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. |