PUT api/OrderGuideItems/{Id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
Required |
Body Parameters
OrderGuideItemData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| SalesCallId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| PackageId | globally unique identifier |
None. |
|
| Inventory | integer |
None. |
|
| ReorderLevel | integer |
None. |
|
| ReorderQuantity | integer |
None. |
|
| ClientData | string |
None. |
|
| Identifier | string |
None. |
|
| IsDeleted | integer |
None. |
|
| Updated | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "52c1a94b-be79-4166-9d77-46a2f4091748",
"SalesCallId": "29ff22f1-a610-4868-94cd-04302fbc5fe8",
"ProductId": "43ef3b05-f0b3-46ab-b1fd-55d77936e849",
"PackageId": "e984c1af-abcd-49c3-a0da-099179d2536a",
"Inventory": 1,
"ReorderLevel": 1,
"ReorderQuantity": 1,
"ClientData": "sample string 3",
"Identifier": "sample string 4",
"IsDeleted": 1,
"Updated": "2025-12-15T23:37:03.6137987-05:00"
}
application/xml, text/xml
Sample:
<OrderGuideItemData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <ClientData>sample string 3</ClientData> <Id>52c1a94b-be79-4166-9d77-46a2f4091748</Id> <Identifier>sample string 4</Identifier> <Inventory>1</Inventory> <IsDeleted>1</IsDeleted> <PackageId>e984c1af-abcd-49c3-a0da-099179d2536a</PackageId> <ProductId>43ef3b05-f0b3-46ab-b1fd-55d77936e849</ProductId> <ReorderLevel>1</ReorderLevel> <ReorderQuantity>1</ReorderQuantity> <SalesCallId>29ff22f1-a610-4868-94cd-04302fbc5fe8</SalesCallId> <Updated>2025-12-15T23:37:03.6137987-05:00</Updated> </OrderGuideItemData>
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. |