Get prices
This endpoint is deprecated.
POST
/api/RPC.common.Api.Prices.get?token=<TOKEN>Parameters
| Field | Type | Description |
|---|---|---|
pricelist_coderequired | String | Price list code |
sku | String | Item SKU |
measure_code | String | Unit of measurement ID |
updatedon | String | Updated after |
Request example
Search Prices By Sku and Measure Code:
{
"data" : [
{
"sku" : 10001,
"pricelist_code" : 5327453,
"measure_code" : "pcs"
}
]
}
Get Prices Changed After a Moment (incremental sync):
{
"updatedon" : "2026-08-20 10:00:00"
}cURL
Search Prices By Sku and Measure Code:
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "data" : [ { "sku" : 10001, "pricelist_code" : 5327453, "measure_code" : "pcs" } ]}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Prices.get?token=<TOKEN>"
Get Prices Changed After a Moment (incremental sync):
curl -X POST -H 'Content-Type: application/json; charset=utf-8' -d '{ "updatedon" : "2026-08-20 10:00:00"}' "https://<DOMAIN_NAME>/api/RPC.common.Api.Prices.get?token=<TOKEN>"Response example
HTTP/1.1 200 OK
{
"result" : [
{
"currency" : "BGN",
"sku" : 10001,
"measure_code" : "pcs",
"pricelist_code" : 5327453,
"price" : "150.00"
}
],
"total_count" : 1,
"count" : 1
}