DELETE api/OrderGuideItems/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
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. |
Response Formats
application/json, text/json
Sample:
{
"Id": "7b488cc7-f35b-40b1-b4c0-89367234846f",
"SalesCallId": "a2be2173-8e7e-4c14-b32a-cc6a33c65b8c",
"ProductId": "3194b7d3-a007-4c84-a4d4-437828e701a1",
"PackageId": "c05d4a6a-cd38-4592-827a-ec4367515b3c",
"Inventory": 1,
"ReorderLevel": 1,
"ReorderQuantity": 1,
"ClientData": "sample string 3",
"Identifier": "sample string 4",
"IsDeleted": 1,
"Updated": "2025-12-15T23:41:40.6321731-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>7b488cc7-f35b-40b1-b4c0-89367234846f</Id> <Identifier>sample string 4</Identifier> <Inventory>1</Inventory> <IsDeleted>1</IsDeleted> <PackageId>c05d4a6a-cd38-4592-827a-ec4367515b3c</PackageId> <ProductId>3194b7d3-a007-4c84-a4d4-437828e701a1</ProductId> <ReorderLevel>1</ReorderLevel> <ReorderQuantity>1</ReorderQuantity> <SalesCallId>a2be2173-8e7e-4c14-b32a-cc6a33c65b8c</SalesCallId> <Updated>2025-12-15T23:41:40.6321731-05:00</Updated> </OrderGuideItemData>