POST api/OrderGuideItems
Request Information
URI Parameters
None.
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": "30282648-c8da-471f-ad7d-74d909cce3e7",
"SalesCallId": "5a18b926-0958-421a-9d9f-97e4ba513e3c",
"ProductId": "790d45bc-eb1f-4d56-8a31-e73d3ee756fb",
"PackageId": "4b9b2d2a-7bd7-4b1c-8472-5b78eb7a9c38",
"Inventory": 1,
"ReorderLevel": 1,
"ReorderQuantity": 1,
"ClientData": "sample string 3",
"Identifier": "sample string 4",
"IsDeleted": 1,
"Updated": "2025-12-15T23:36:45.3430457-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>30282648-c8da-471f-ad7d-74d909cce3e7</Id> <Identifier>sample string 4</Identifier> <Inventory>1</Inventory> <IsDeleted>1</IsDeleted> <PackageId>4b9b2d2a-7bd7-4b1c-8472-5b78eb7a9c38</PackageId> <ProductId>790d45bc-eb1f-4d56-8a31-e73d3ee756fb</ProductId> <ReorderLevel>1</ReorderLevel> <ReorderQuantity>1</ReorderQuantity> <SalesCallId>5a18b926-0958-421a-9d9f-97e4ba513e3c</SalesCallId> <Updated>2025-12-15T23:36:45.3430457-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. |