GET api/PriceListItems/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PriceListItemData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| PackageId | globally unique identifier |
None. |
|
| PriceListId | globally unique identifier |
None. |
|
| MinQty | integer |
None. |
|
| Price | decimal number |
None. |
|
| Effective | date |
None. |
|
| Identifier | string |
None. |
|
| Updated | date |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "c9b695c1-66b3-445f-b6b9-23358d2725ee",
"ProductId": "eaf76e95-9f31-4a7b-8915-93c55d2fd529",
"PackageId": "fad25e7b-666f-4668-a6a8-795f82033b3b",
"PriceListId": "faee8a4e-e332-4d57-8644-550355f65769",
"MinQty": 1,
"Price": 2.0,
"Effective": "2025-12-15T23:43:54.3509678-05:00",
"Identifier": "sample string 3",
"Updated": "2025-12-15T23:43:54.3509678-05:00",
"IsDeleted": 4
}
application/xml, text/xml
Sample:
<PriceListItemData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <Effective>2025-12-15T23:43:54.3509678-05:00</Effective> <Id>c9b695c1-66b3-445f-b6b9-23358d2725ee</Id> <Identifier>sample string 3</Identifier> <IsDeleted>4</IsDeleted> <MinQty>1</MinQty> <PackageId>fad25e7b-666f-4668-a6a8-795f82033b3b</PackageId> <Price>2</Price> <PriceListId>faee8a4e-e332-4d57-8644-550355f65769</PriceListId> <ProductId>eaf76e95-9f31-4a7b-8915-93c55d2fd529</ProductId> <Updated>2025-12-15T23:43:54.3509678-05:00</Updated> </PriceListItemData>