ENVIRONMENT : Test

GET {culture}/api/pricelists/{id}/CategoryMinPrice/{currency}

Returns lowest prices per car category for a single pricelist.

Request Information

URI Parameters

Name Description Type Additional information
culture

string

None.

currency

Optional parameter to define output prices' currency

string

None.

id

Pricelist identifier

integer

Required

Body Parameters

None.

Response Information

Resource Description

Returns lowest prices per car category for a single pricelist.

CarPricelistModel
Name Description Type Additional information
ActiveFrom

Date range in which pricelist is active. UTC representation in ISO 8601 format.

date

None.

ActiveTo

Date range in which pricelist is active. UTC representation in ISO 8601 format.

date

None.

BookingFrom

Booking pick-up date range. UTC representation in ISO 8601 format.

date

None.

BookingTo

Booking pick-up date range. UTC representation in ISO 8601 format.

date

None.

Code

Pricelist alpha-numeric code.

string

None.

Currency

Currency code for pricelist.

string

None.

Id

Identifier of pricelist in provider system.

integer

None.

IsNett

If IsNett is true - PREPAID - bookings are "prepaid" and client pays complete rental costs to agency. If IsNett is false - PAY ON ARRIVAL - bookings are "pay on arrival" and client pays complete rental costs to provider.

boolean

None.

MaxDurationDays

Maximum booking duration in days for this pricelist.

integer

None.

MaxDurationHours

Maximum booking duration in hours for this pricelist.

integer

None.

MinDurationDays

Minimum booking duration in days for this pricelist.

integer

None.

MinDurationHours

Minimum booking duration in hours for this pricelist.

integer

None.

Name

Pricelist name.

string

None.

Prices

Collection of all active prices for this pricelist.

Collection of PricelistPriceModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Prices": [
    {
      "CarCategoryId": 1,
      "OfficeId": 1,
      "DateFrom": "2026-05-15T11:07:33.4823264+02:00",
      "DateTo": "2026-05-15T11:07:33.4823264+02:00",
      "DurationFrom": 1,
      "DurationTo": 7,
      "Amount": 98.0,
      "Currency": "EUR",
      "PricelistAmount": 712.0,
      "PricelistCurrency": "HRK"
    },
    {
      "CarCategoryId": 1,
      "OfficeId": 1,
      "DateFrom": "2026-05-15T11:07:33.4823264+02:00",
      "DateTo": "2026-05-15T11:07:33.4823264+02:00",
      "DurationFrom": 1,
      "DurationTo": 7,
      "Amount": 98.0,
      "Currency": "EUR",
      "PricelistAmount": 712.0,
      "PricelistCurrency": "HRK"
    }
  ],
  "Id": 1,
  "Name": "Agency EU - 2016",
  "Code": "EU 2016",
  "Currency": "EUR",
  "IsNett": true,
  "ActiveFrom": "2026-05-15T11:07:33.4823264+02:00",
  "ActiveTo": "2026-05-15T11:07:33.4823264+02:00",
  "BookingFrom": "2026-05-15T11:07:33.4823264+02:00",
  "BookingTo": "2026-05-15T11:07:33.4823264+02:00",
  "MinDurationHours": 1,
  "MaxDurationHours": 1,
  "MinDurationDays": 1,
  "MaxDurationDays": 1
}