Appearance
Get Price
The valid price for the customer on a given date.
Endpoints
https://app.passelimerit.fi/api/v2/getpriceQuery Payload
json
{
"ItemCode": "testItem",
"CustomerId": "xxxxxxxx-xxxx-Mxxx-Nxxx-xxxxxxxxxxxx",
"CustName": "testName",
"CustRegno": "testRegno",
"CurrencyCode": "EUR",
"UOMName": "testUOM",
"DocDate": "20200707"
}Click to see the query parameters
| Field | Type | Comment | Required |
|---|---|---|---|
| ItemCode | Str | Required | |
| CustomerId | Guid | If filled, CustName and CustRegNo will not be used | |
| CustName | Str | Required one of CustName or CustRegno | Required? |
| CustRegno | Str | Required? | |
| CurrencyCode | Str | If not specified, API will get local currency | |
| UOMName | Str | ||
| DocDate | Date | Required |
Successful Result
json
{
"ItemCode": "testItem",
"Price": 10.0,
"DiscountPct": 0.0
}Click to see the result parameters
| Field | Type | Comment |
|---|---|---|
| ItemCode | Str | |
| Price | Dec | |
| DiscountPct | Dec |