GET api/PriceLevels/PriceList?token={token}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ItemPriceList| Name | Description | Type | Additional information |
|---|---|---|---|
| ITEMNMBR | string |
None. |
|
| CURNCYID | string |
None. |
|
| PRCLEVEL | string |
None. |
|
| FROMQTY | decimal number |
None. |
|
| TOQTY | decimal number |
None. |
|
| UOMPRICE | decimal number |
None. |
|
| ETVID | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ITEMNMBR": "sample string 1",
"CURNCYID": "sample string 2",
"PRCLEVEL": "sample string 3",
"FROMQTY": 4.0,
"TOQTY": 5.0,
"UOMPRICE": 6.0,
"ETVID": "sample string 7"
},
{
"ITEMNMBR": "sample string 1",
"CURNCYID": "sample string 2",
"PRCLEVEL": "sample string 3",
"FROMQTY": 4.0,
"TOQTY": 5.0,
"UOMPRICE": 6.0,
"ETVID": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfItemPriceList xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MaxSalesApi.Models">
<ItemPriceList>
<CURNCYID>sample string 2</CURNCYID>
<ETVID>sample string 7</ETVID>
<FROMQTY>4</FROMQTY>
<ITEMNMBR>sample string 1</ITEMNMBR>
<PRCLEVEL>sample string 3</PRCLEVEL>
<TOQTY>5</TOQTY>
<UOMPRICE>6</UOMPRICE>
</ItemPriceList>
<ItemPriceList>
<CURNCYID>sample string 2</CURNCYID>
<ETVID>sample string 7</ETVID>
<FROMQTY>4</FROMQTY>
<ITEMNMBR>sample string 1</ITEMNMBR>
<PRCLEVEL>sample string 3</PRCLEVEL>
<TOQTY>5</TOQTY>
<UOMPRICE>6</UOMPRICE>
</ItemPriceList>
</ArrayOfItemPriceList>