A method for obtaining minimum and maximum values for services
GET
/codelist/servicePriceLimit
Codelist
Purpose and Usage
Retrieve the pricing, weight, and insurance limits for specific services. PPL typically offers various types of shipping services (e.g., domestic parcel delivery, international shipments, cash on delivery, insured shipments, etc.). Each of these services may have certain restrictions, such as a maximum cash on delivery amount or a maximum insurance value.
With this codelist, your application can correctly configure the limits for the offered services. For example, if the API indicates that the maximum cash on delivery amount (COD) is 50,000 CZK, you can prevent users from entering a cash on delivery amount that exceeds this value.
If these limits change within PPL (e.g., an increase in the maximum cash on delivery amount), the integrator does not need to manually maintain this information. The application will automatically update the limits from the endpoint.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/codelist/servicePriceLimit?Service&Currency&Country&Product&Limit&Offset' \
--header 'Accept-Language;' \
--header 'X-Correlation-ID;' \
--header 'X-LogLevel;'
Response Response Example
200 - Example 1
[
{
"service": "string",
"currency": "string",
"country": "string",
"product": "string",
"minPrice": 0,
"maxPrice": 0
}
]
Request
Query Params
Service
string
optional
Currency
string
optional
Country
string
optional
Product
string
optional
Limit
integer <int32>
required
>= 1<= 1000
Offset
integer <int32>
required
>= 0
Header Params
Accept-Language
string
optional
X-Correlation-ID
string
optional
X-LogLevel
enum<string>
optional
Allowed values:
TraceDebugInformationWarningErrorCritical
Responses
Modified at 2025-02-07 08:21:54