v1

latestOpenAPI 3.0.2EULA2026-07-143221521.2 MB
Product reservation prices

Get all product reservation prices

Get a list of product reservation prices. Each price represents the value of the product for the reservation for a specific store and currency.

get/product-reservation-prices

Query parameters

countinteger

The number of records to return in API response.

⚠️ We recommended adjust the batch size based on processing time. Depending on the response time of the request. Default value of 100 records is used if count parameter is not set.

offsetinteger

The number of records from a collection to skip. Default value of 0 is used when parameter offset is not set.

sort_fieldstring

Name of the sorting parameter. You can sort by any of the first level parameters from the resource response. Response is sorted by the specified field.

sort_direction'ASC' | 'DESC'

Direction of sorting the response list.

reservable_product_idstring

The unique ID of the reservable product. GET /reservable-products In case you want to filter multiple options use array syntax : reservable_product_id[]=8bc8ca16f9c5039951021700a2&reservable_product_id[]=82c06812c0756528660784fef

store_idstring

The unique ID of the store in CareCloud. GET /stores

currency_idstring

The unique ID of a currency from Currencies resource.

Headers

Accept-Languagestring

The unique ID of the language code by ISO 639-1.

Response

OK

Example response

{
  "data": {
    "product_reservation_prices": [
      {
        "product_reservation_price_id": "81eaeea13b8984a169c490a325",
        "reservable_product_id": "8ea2591121e636086a4a9c0992",
        "plu_ids": [
          {
            "list_code": "GLOBAL",
            "code": "abc"
          }
        ],
        "value": 69,
        "currency_id": "8bed991c68a470e7aaeffbf048",
        "store_id": "82db62087b0f79a6e14e5747e7",
        "last_change": "2020-04-20 11:23:35",
        "state": 1
      }
    ],
    "total_items": 1
  }
}