GetPriceInfo
Command, Introduced in version 22.6, Obsolete since version 25.5 (Use GetPriceListPrice or GetCustomerPrice instead)
POST https://localhost:8001/sv/001.1/api/v1/Sales/SalesPrices/GetPriceInfo
Calculates sales price information for a given part and price list.
Returns PriceInfo
Required permission
Show part
Properties
Name | Type | Summary | Introduced in |
---|---|---|---|
PartId | Int64 | The business key identifier of the part to calculate price information for.
|
|
PriceListId | Int64 | The business key identifier of the price list to calculate price information for.
|
|
UnitId | Int64? | The business key identifier of the unit to use when calculating.
|
|
CurrencyId | Int64? | The business key identifier of the currency to use when calculating.
|
|
QuantityInUnit | Decimal | The quantity to calculate price for.
|
Example
{
"PartId": 0,
"PriceListId": 0,
"UnitId": null,
"CurrencyId": null,
"QuantityInUnit": 0.0
}