GET api/priceLists/price?transactionableID={transactionableID}&priceListID={priceListID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| transactionableID | integer |
Required |
|
| priceListID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PriceListItemData| Name | Description | Type | Additional information |
|---|---|---|---|
| TransactionableCategoryID | integer |
None. |
|
| TransactionableCategoryName | string |
None. |
|
| ManufacturerName | string |
None. |
|
| TransactionableID | integer |
None. |
|
| TransactionableCode | string |
None. |
|
| TransactionableBarCode | string |
None. |
|
| TransactionableName | string |
None. |
|
| TransactionableScaleProductCode | integer |
None. |
|
| LastPurchasePrice | decimal number |
None. |
|
| LastPurchasePriceCurrencyCode | CurrencyCodeEnum |
None. |
|
| PriceListID | integer |
None. |
|
| PriceListName | string |
None. |
|
| NumbersToRound | integer |
None. |
|
| PriceListCurrencyCode | CurrencyCodeEnum |
None. |
|
| CurrencyCode | CurrencyCodeEnum |
None. |
|
| NetPrice | decimal number |
None. |
|
| LastUpdatePriceDate | date |
None. |
|
| LastUpdatePriceDateToStr | string |
None. |
|
| FinalPrice | decimal number |
None. |
|
| IVAAlicuota | decimal number |
None. |
|
| IVAAmount | decimal number |
None. |
|
| TaxITCAmount | decimal number |
None. |
|
| TaxIDCAmount | decimal number |
None. |
|
| OtherTaxs | decimal number |
None. |
|
| AutomaticPrice | boolean |
None. |
|
| ApplyPercentage | boolean |
None. |
|
| ValueToApply | decimal number |
None. |
|
| ModifiedOn | date |
None. |
|
| Deleted | boolean |
None. |
|
| DollarPrice | decimal number |
None. |
|
| Stock | decimal number |
None. |
|
| ModifiedByDisplayName | string |
None. |
|
| ModifiedOnToDateTimeStr | string |
None. |
|
| ID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TransactionableCategoryID": 1,
"TransactionableCategoryName": "sample string 1",
"ManufacturerName": "sample string 2",
"TransactionableID": 1,
"TransactionableCode": "sample string 3",
"TransactionableBarCode": "sample string 4",
"TransactionableName": "sample string 5",
"TransactionableScaleProductCode": 1,
"LastPurchasePrice": 1.0,
"LastPurchasePriceCurrencyCode": 0,
"PriceListID": 1,
"PriceListName": "sample string 6",
"NumbersToRound": 1,
"PriceListCurrencyCode": 0,
"CurrencyCode": 0,
"NetPrice": -0.99,
"LastUpdatePriceDate": "2026-09-20T10:01:34.927759+00:00",
"LastUpdatePriceDateToStr": "20/09/2026 10:01",
"FinalPrice": 1.0,
"IVAAlicuota": 1.0,
"IVAAmount": -0.01,
"TaxITCAmount": 1.0,
"TaxIDCAmount": 1.0,
"OtherTaxs": 2.0,
"AutomaticPrice": true,
"ApplyPercentage": true,
"ValueToApply": 1.0,
"ModifiedOn": "2026-09-20T10:01:34.927759+00:00",
"Deleted": true,
"DollarPrice": 1.0,
"Stock": 1.0,
"ModifiedByDisplayName": "sample string 7",
"ModifiedOnToDateTimeStr": "20/09/2026 07:01",
"ID": 1
}
text/xml
Sample:
<PriceListItemData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data.PriceList"> <ID xmlns="http://schemas.datacontract.org/2004/07/StackBase.Common.Data">1</ID> <ApplyPercentage>true</ApplyPercentage> <AutomaticPrice>true</AutomaticPrice> <CurrencyCode>ARS</CurrencyCode> <Deleted>true</Deleted> <DollarPrice>1</DollarPrice> <FinalPrice>1.0</FinalPrice> <IVAAlicuota>1</IVAAlicuota> <LastPurchasePrice>1</LastPurchasePrice> <LastPurchasePriceCurrencyCode>ARS</LastPurchasePriceCurrencyCode> <LastUpdatePriceDate>2026-09-20T10:01:34.927759+00:00</LastUpdatePriceDate> <ManufacturerName>sample string 2</ManufacturerName> <ModifiedByDisplayName>sample string 7</ModifiedByDisplayName> <ModifiedOn>2026-09-20T10:01:34.927759+00:00</ModifiedOn> <NumbersToRound>1</NumbersToRound> <PriceListCurrencyCode>ARS</PriceListCurrencyCode> <PriceListID>1</PriceListID> <PriceListName>sample string 6</PriceListName> <Stock>1</Stock> <TaxIDCAmount>1</TaxIDCAmount> <TaxITCAmount>1</TaxITCAmount> <TransactionableBarCode>sample string 4</TransactionableBarCode> <TransactionableCategoryID>1</TransactionableCategoryID> <TransactionableCategoryName>sample string 1</TransactionableCategoryName> <TransactionableCode>sample string 3</TransactionableCode> <TransactionableID>1</TransactionableID> <TransactionableName>sample string 5</TransactionableName> <TransactionableScaleProductCode>1</TransactionableScaleProductCode> <ValueToApply>1</ValueToApply> </PriceListItemData>