What is Live Pricing?
Live Pricing allows Core-Portal to retrieve current prices from your own system, such as an ERP or pricing service.
When should you use it?
If you use customer-specific pricing
If prices are calculated outside Core-Portal
If you want to show real-time prices in the portal
How does it work?
Core-Portal sends a pricing request to your endpoint
Your system calculates the price
Core-Portal receives the price and shows it in the portal
What do you need to configure?
A working pricing endpoint
An acceptance or test environment to validate the setup first
Important to know
Without configuration, Core-Portal will continue to use the default prices
Customers need to implement our endpoints themselves
We recommend doing the first implementation with guidance from an experienced consultant
Who is this relevant for?
Customers who want to use Live Pricing in their Core-Portal Plus environment
Technical administrators or implementation partners
Need help?
Please contact support or your implementation contact
Request
Request
{
"currency": "EUR",
"customer_no": "K001",
"ordertype": "stocksale",
"items": [
{
"item_variant_id": "iv001",
"generic_code": "g001",
"ean_barcode": "12345678",
"current_unit_price": 21.02,
"quantity": 2
},
{
"item_variant_id": "iv002",
"generic_code": "g002",
"ean_barcode": "12345679",
"current_unit_price": 14.99,
"quantity": 5
}
]
}
Response
Response
{
"valid_until": "2026-04-23T18:23:43.511Z",
"error_code": null,
"items": [
{
"item_variant_id": "iv001",
"generic_code": "g001",
"ean_barcode": "12345678",
"unit_price": 21.02
},
{
"item_variant_id": "iv002",
"generic_code": "g002",
"ean_barcode": "12345679",
"unit_price": 14.99
}, etc...
]
}