Reservation

Returns the services booked for a specific reservation.

Returns the services booked for a specific reservation.<br>You must have at least one of these scopes: 'reservations.read, reservations.manage'.

get/booking/v1/reservations/{id}/services

Path parameters

idstring required

Id of the reservation.

Response

Success

countinteger required

Total count of items

Example response

{
  "services": [
    {
      "service": {
        "id": "MUC-YOGA",
        "code": "YOGA",
        "name": "Sun Salutation",
        "description": "Start the day with a private Yoga session with one of our certified trainers.",
        "pricingUnit": "Person",
        "defaultGrossPrice": {
          "amount": 35,
          "currency": "EUR"
        }
      },
      "totalAmount": {
        "grossAmount": 30,
        "netAmount": 25,
        "vatType": "Normal",
        "vatPercent": 19,
        "currency": "EUR"
      },
      "dates": [
        {
          "serviceDate": "2026-09-01",
          "count": 1,
          "amount": {
            "grossAmount": 30,
            "netAmount": 25,
            "vatType": "Normal",
            "vatPercent": 19,
            "currency": "EUR"
          },
          "isMandatory": false
        }
      ]
    }
  ],
  "count": 1
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.