Transfers

Booking Reservation

Create transfer booking

post

This endpoint creates a new transfer booking. Note All newly created bookings have a default status of ON_HOLD.

Authorizations
Body
transferIdstringRequired

The transferId id for this booking.

Example: 66fea92a0d31eeda7cff116a
expirationMinutesnumberRequired

This attribute extends the ON_HOLD status of the reserve and its value is represented in minutes (Min 20 - Max 200).

Example: 200
notesstringOptional

Optional notes for the booking.

Example: My notes
optionIdstringRequired

The option id for this booking.

Example: 08167870-f83f-430e-90e1-2623ae6fbc36
uuidany | nullableOptional

A UUID used as an idempotency key when creating the booking.

Responses
200
Object of booking
application/json
post
JS
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

const raw = JSON.stringify({
  "uuid": null,
  "transferId": "66fea92a0d31eeda7cff116a",
  "expirationMinutes": "580",
  "optionId": "08167870-f83f-430e-90e1-2623ae6fbc36",
  "notes": "lorem ipsim "
});

const requestOptions = {
  method: "POST",
  headers: myHeaders,
  body: raw,
  redirect: "follow"
};

fetch('/bookings', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

Object of booking

{
  "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
  "status": "ON_HOLD",
  "utcCreatedAt": "2024-11-12T09:51:32.973Z",
  "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
  "utcExpiresAt": "2024-11-12T19:31:32.973Z",
  "utcRedeemedAt": null,
  "utcConfirmedAt": null,
  "transferId": "67331ca43070a6fb19a24443",
  "transfer": {
    "transferType": "ARRIVAL",
    "serviceReference": "Flight-456",
    "startTime": "18:00",
    "localDateStart": "2024-12-19",
    "distanceUnit": "KM",
    "distanceInclude": 18.24,
    "options": [
      {
        "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
        "reference": "669e946751fd06f319d27c2a",
        "vehicle": {
          "seats": 3,
          "suitcases": 3,
          "type": "SEDAN",
          "category": "BUSINESS",
          "name": "Mercedes Benz E Class",
          "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
        },
        "cancellationPolicy": [
          {
            "type": "FULL_REFUND",
            "cutoffAmount": 48,
            "cutoffUnit": "HOURS",
            "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
          }
        ]
      }
    ]
  },
  "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
  "cancellable": true,
  "cancellation": {
    "refund": "FULL_REFUND",
    "reason": "Lorem ipsum",
    "utcCancelledAt": null
  },
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "johndoe@email.com",
    "phoneNumber": "+1 111 222 333",
    "postalCode": "80147",
    "country": "Italy",
    "notes": "Lorem impsun"
  },
  "deliveryMethods": [
    "VOUCHER"
  ],
  "voucher": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "ticket": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "notes": "Lorem ipsum"
}

Booking Confirmation

Booking Transfers Confirmation

post

This endpoint confirms the booking so it's ready to be used.

Authorizations
Path parameters
idstringRequired

The booking id.

Body
emailReceiptstringRequired

Whether you want RhonTrip Cloud to email the guest a copy of their receipt. (defaults to false)

Example: john@email.com
resellerReferencestringRequired

Your reference for this booking. Also known as a Voucher Number.

Example: u7ut5rr
Responses
200
Object of booking
application/json
post
JS
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

const raw = JSON.stringify({
  "resellerReference": "u7ut5rr",
  "emailReceipt": "john@email.com",
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "user@email.com",
    "phoneNumber": "1111111111",
    "postalCode": 2323,
    "country": "US",
    "notes": "Lorem ipsum"
  }
});

const requestOptions = {
  method: "POST",
  headers: myHeaders,
  body: raw,
  redirect: "follow"
};

fetch('/bookings/confirm', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

Object of booking

{
  "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
  "status": "ON_HOLD",
  "utcCreatedAt": "2024-11-12T09:51:32.973Z",
  "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
  "utcExpiresAt": "2024-11-12T19:31:32.973Z",
  "utcRedeemedAt": null,
  "utcConfirmedAt": null,
  "transferId": "67331ca43070a6fb19a24443",
  "transfer": {
    "transferType": "ARRIVAL",
    "serviceReference": "Flight-456",
    "startTime": "18:00",
    "localDateStart": "2024-12-19",
    "distanceUnit": "KM",
    "distanceInclude": 18.24,
    "options": [
      {
        "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
        "reference": "669e946751fd06f319d27c2a",
        "vehicle": {
          "seats": 3,
          "suitcases": 3,
          "type": "SEDAN",
          "category": "BUSINESS",
          "name": "Mercedes Benz E Class",
          "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
        },
        "cancellationPolicy": [
          {
            "type": "FULL_REFUND",
            "cutoffAmount": 48,
            "cutoffUnit": "HOURS",
            "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
          }
        ]
      }
    ]
  },
  "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
  "cancellable": true,
  "cancellation": {
    "refund": "FULL_REFUND",
    "reason": "Lorem ipsum",
    "utcCancelledAt": null
  },
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "johndoe@email.com",
    "phoneNumber": "+1 111 222 333",
    "postalCode": "80147",
    "country": "Italy",
    "notes": "Lorem impsun"
  },
  "deliveryMethods": [
    "VOUCHER"
  ],
  "voucher": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "ticket": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "notes": "Lorem ipsum"
}

Booking Cancellation

Booking Cancellation

post

For cancelling bookings. - Note You can only cancel a booking if booking.cancellable is TRUE, and is within the booking cancellation cut-off window.

Authorizations
Path parameters
idstringRequired

The booking id.

Body
reasonstringOptional

A text value explaining the reason for the cancellation.

Example: Lorem ipsum dolor sit amet
Responses
200
Object of booking
application/json
post
JS
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

const raw = JSON.stringify({
  "reason": "Lorem ipsum"
});

const requestOptions = {
  method: "POST",
  headers: myHeaders,
  body: raw,
  redirect: "follow"
};

fetch('/bookings/cancel', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

Object of booking

{
  "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
  "status": "ON_HOLD",
  "utcCreatedAt": "2024-11-12T09:51:32.973Z",
  "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
  "utcExpiresAt": "2024-11-12T19:31:32.973Z",
  "utcRedeemedAt": null,
  "utcConfirmedAt": null,
  "transferId": "67331ca43070a6fb19a24443",
  "transfer": {
    "transferType": "ARRIVAL",
    "serviceReference": "Flight-456",
    "startTime": "18:00",
    "localDateStart": "2024-12-19",
    "distanceUnit": "KM",
    "distanceInclude": 18.24,
    "options": [
      {
        "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
        "reference": "669e946751fd06f319d27c2a",
        "vehicle": {
          "seats": 3,
          "suitcases": 3,
          "type": "SEDAN",
          "category": "BUSINESS",
          "name": "Mercedes Benz E Class",
          "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
        },
        "cancellationPolicy": [
          {
            "type": "FULL_REFUND",
            "cutoffAmount": 48,
            "cutoffUnit": "HOURS",
            "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
          }
        ]
      }
    ]
  },
  "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
  "cancellable": true,
  "cancellation": {
    "refund": "FULL_REFUND",
    "reason": "Lorem ipsum",
    "utcCancelledAt": null
  },
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "johndoe@email.com",
    "phoneNumber": "+1 111 222 333",
    "postalCode": "80147",
    "country": "Italy",
    "notes": "Lorem impsun"
  },
  "deliveryMethods": [
    "VOUCHER"
  ],
  "voucher": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "ticket": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "notes": "Lorem ipsum"
}

Get Bookings

Get Bookings

get

Get full booking details for all bookings

Authorizations
Query parameters
pagenumberOptional

Specifies the page number of the results to retrieve. This parameter is used to paginate the query results, allowing users to navigate between different pages of data.

Example: 1
limitnumberOptional

Specifies the maximum number of results to retrieve per page. This parameter controls how many items will be returned on each page of the response.

Example: 100
sortstring · enumOptional

Defines the field by which to sort the results. This parameter allows users to specify which property of the data will be used to order the list of results.

Example: PRICEPossible values:
orderstring · enumOptional

Determines the order in which results are returned. Allowed values are 'Descending' for sorting results in descending order (from highest to lowest), and 'Ascending' for sorting results in ascending order (from lowest to highest).

Example: DESCENDINGPossible values:
typestring · enumOptional

Determines the type of bookings.

Example: TRANSFERPossible values:
Header parameters
octo-capabilitiesstringOptional

Comma-separated list of capabilities supported by the client. Possible values are: - octo/pricing

Example: octo/pricing
Responses
200
An object
application/json
get
JS
const myHeaders = new Headers();

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch('/bookings?page=1&limit=100&sort=CREATED&order=DESCENDING', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

An object

{
  "totalPages": 1,
  "pageNumber": 1,
  "pageSize": 1,
  "count": 1,
  "bookings": [
    {
      "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
      "status": "ON_HOLD",
      "utcCreatedAt": "2024-11-12T09:51:32.973Z",
      "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
      "utcExpiresAt": "2024-11-12T19:31:32.973Z",
      "utcRedeemedAt": null,
      "utcConfirmedAt": null,
      "transferId": "67331ca43070a6fb19a24443",
      "transfer": {
        "transferType": "ARRIVAL",
        "serviceReference": "Flight-456",
        "startTime": "18:00",
        "localDateStart": "2024-12-19",
        "distanceUnit": "KM",
        "distanceInclude": 18.24,
        "options": [
          {
            "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
            "reference": "669e946751fd06f319d27c2a",
            "vehicle": {
              "seats": 3,
              "suitcases": 3,
              "type": "SEDAN",
              "category": "BUSINESS",
              "name": "Mercedes Benz E Class",
              "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
            },
            "cancellationPolicy": [
              {
                "type": "FULL_REFUND",
                "cutoffAmount": 48,
                "cutoffUnit": "HOURS",
                "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
              }
            ]
          }
        ]
      },
      "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
      "cancellable": true,
      "cancellation": {
        "refund": "FULL_REFUND",
        "reason": "Lorem ipsum",
        "utcCancelledAt": null
      },
      "contact": {
        "fullName": "John Doe",
        "firstName": "John",
        "lastName": "Doe",
        "emailAddress": "johndoe@email.com",
        "phoneNumber": "+1 111 222 333",
        "postalCode": "80147",
        "country": "Italy",
        "notes": "Lorem impsun"
      },
      "deliveryMethods": [
        "VOUCHER"
      ],
      "voucher": {
        "redemptionMethod": "DIGITAL",
        "utcRedeemedAt": null,
        "deliveryOptions": [
          {
            "deliveryFormat": "QRCODE",
            "deliveryValue": "https://example.com/qrcode"
          }
        ]
      },
      "ticket": {
        "redemptionMethod": "DIGITAL",
        "utcRedeemedAt": null,
        "deliveryOptions": [
          {
            "deliveryFormat": "QRCODE",
            "deliveryValue": "https://example.com/qrcode"
          }
        ]
      },
      "notes": "Lorem ipsum"
    }
  ]
}

Get Booking

Get Booking

get

Get the details of an existing booking.

Authorizations
Path parameters
idstringRequired

The booking id.

Responses
200
Object of bookingTransfer
application/json
get
JS
const myHeaders = new Headers();

const requestOptions = {
  method: "GET",
  headers: myHeaders,
  redirect: "follow"
};

fetch('/bookings/', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

Object of bookingTransfer

{
  "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
  "status": "ON_HOLD",
  "utcCreatedAt": "2024-11-12T09:51:32.973Z",
  "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
  "utcExpiresAt": "2024-11-12T19:31:32.973Z",
  "utcRedeemedAt": null,
  "utcConfirmedAt": null,
  "transferId": "67331ca43070a6fb19a24443",
  "transfer": {
    "transferType": "ARRIVAL",
    "serviceReference": "Flight-456",
    "startTime": "18:00",
    "localDateStart": "2024-12-19",
    "distanceUnit": "KM",
    "distanceInclude": 18.24,
    "options": [
      {
        "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
        "reference": "669e946751fd06f319d27c2a",
        "vehicle": {
          "seats": 3,
          "suitcases": 3,
          "type": "SEDAN",
          "category": "BUSINESS",
          "name": "Mercedes Benz E Class",
          "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
        },
        "cancellationPolicy": [
          {
            "type": "FULL_REFUND",
            "cutoffAmount": 48,
            "cutoffUnit": "HOURS",
            "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
          }
        ]
      }
    ]
  },
  "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
  "cancellable": true,
  "cancellation": {
    "refund": "FULL_REFUND",
    "reason": "Lorem ipsum",
    "utcCancelledAt": null
  },
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "johndoe@email.com",
    "phoneNumber": "+1 111 222 333",
    "postalCode": "80147",
    "country": "Italy",
    "notes": "Lorem impsun"
  },
  "deliveryMethods": [
    "VOUCHER"
  ],
  "voucher": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "ticket": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "notes": "Lorem ipsum"
}

Booking Update

Booking Update

patch

Updates a booking before and after it has been confirmed as long as it hasn't been redeemed or within the cancellation cutoff window. To know if the booking can be updated check the booking's cancellable field. If the booking can be cancelled, it can also be updated. It's generally preferred to update a booking rather than cancelling it and rebooking.

Authorizations
Path parameters
idstringRequired

The booking id.

Body
transferIdstringRequired

The transferId id for this booking.

Example: 66fea92a0d31eeda7cff116a
emailReceiptstringOptional

Whether you want RhonTrip Cloud to email the guest a copy of their receipt. (defaults to false)

Example: user@email.com
expirationMinutesnumberOptional

This attribute extends the ON_HOLD status of the reserve and its value is represented in minutes (Min 20 - Max 200).

Example: 344
optionIdstringRequired

The option id for this booking.

Example: 08167870-f83f-430e-90e1-2623ae6fbc36
resellerReferencestringRequired

Your reference for this booking.

Example: asda343
Responses
200
Object of booking
application/json
patch
JS
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

const raw = JSON.stringify({
  "resellerReference": "asda343",
  "emailReceipt": "user@email.com",
  "transferId": "66fea92a0d31eeda7cff116a",
  "optionId": "08167870-f83f-430e-90e1-2623ae6fbc36",
  "expirationMinutes": 344,
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "user@email.com",
    "phoneNumber": "345345355345",
    "postalCode": 2323,
    "country": "US",
    "notes": "Lorem ipsum"
  }
});

const requestOptions = {
  method: "PATCH",
  headers: myHeaders,
  body: raw,
  redirect: "follow"
};

fetch('/bookings/', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

Object of booking

{
  "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
  "status": "ON_HOLD",
  "utcCreatedAt": "2024-11-12T09:51:32.973Z",
  "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
  "utcExpiresAt": "2024-11-12T19:31:32.973Z",
  "utcRedeemedAt": null,
  "utcConfirmedAt": null,
  "transferId": "67331ca43070a6fb19a24443",
  "transfer": {
    "transferType": "ARRIVAL",
    "serviceReference": "Flight-456",
    "startTime": "18:00",
    "localDateStart": "2024-12-19",
    "distanceUnit": "KM",
    "distanceInclude": 18.24,
    "options": [
      {
        "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
        "reference": "669e946751fd06f319d27c2a",
        "vehicle": {
          "seats": 3,
          "suitcases": 3,
          "type": "SEDAN",
          "category": "BUSINESS",
          "name": "Mercedes Benz E Class",
          "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
        },
        "cancellationPolicy": [
          {
            "type": "FULL_REFUND",
            "cutoffAmount": 48,
            "cutoffUnit": "HOURS",
            "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
          }
        ]
      }
    ]
  },
  "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
  "cancellable": true,
  "cancellation": {
    "refund": "FULL_REFUND",
    "reason": "Lorem ipsum",
    "utcCancelledAt": null
  },
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "johndoe@email.com",
    "phoneNumber": "+1 111 222 333",
    "postalCode": "80147",
    "country": "Italy",
    "notes": "Lorem impsun"
  },
  "deliveryMethods": [
    "VOUCHER"
  ],
  "voucher": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "ticket": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "notes": "Lorem ipsum"
}

Extend Reservation

Extend Reservation

post

Use this endpoint to hold the availability for a booking longer if the status is ON_HOLD.

Authorizations
Path parameters
idstringRequired

The booking id.

Body
expirationMinutesnumberRequired

This attribute extends the ON_HOLD status of the reserve and its value is represented in minutes (Min 20 - Max 200).

Example: 200
Responses
200
Object of booking
application/json
post
JS
const myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");

const raw = JSON.stringify({
  "expirationMinutes": 200
});

const requestOptions = {
  method: "POST",
  headers: myHeaders,
  body: raw,
  redirect: "follow"
};

fetch('/bookings/extend', requestOptions)
  .then((response) => response.text())
  .then((result) => console.log(result))
  .catch((error) => console.error(error));
200

Object of booking

{
  "uuid": "d6f414ce-1275-4008-8ccf-399e9ce95197",
  "status": "ON_HOLD",
  "utcCreatedAt": "2024-11-12T09:51:32.973Z",
  "utcUpdatedAt": "2024-11-12T09:51:32.973Z",
  "utcExpiresAt": "2024-11-12T19:31:32.973Z",
  "utcRedeemedAt": null,
  "utcConfirmedAt": null,
  "transferId": "67331ca43070a6fb19a24443",
  "transfer": {
    "transferType": "ARRIVAL",
    "serviceReference": "Flight-456",
    "startTime": "18:00",
    "localDateStart": "2024-12-19",
    "distanceUnit": "KM",
    "distanceInclude": 18.24,
    "options": [
      {
        "id": "bf81d46f-6595-40df-8891-c4cf49889e15",
        "reference": "669e946751fd06f319d27c2a",
        "vehicle": {
          "seats": 3,
          "suitcases": 3,
          "type": "SEDAN",
          "category": "BUSINESS",
          "name": "Mercedes Benz E Class",
          "image": "https://app.rhombuss.com/api/public/services/sedan-mercedes-benz-e-class.png"
        },
        "cancellationPolicy": [
          {
            "type": "FULL_REFUND",
            "cutoffAmount": 48,
            "cutoffUnit": "HOURS",
            "description": "To receive a Full Refund, cancellations must be made at least 48 Hours prior to the start time of the experience."
          }
        ]
      }
    ]
  },
  "optionId": "bf81d46f-6595-40df-8891-c4cf49889e15",
  "cancellable": true,
  "cancellation": {
    "refund": "FULL_REFUND",
    "reason": "Lorem ipsum",
    "utcCancelledAt": null
  },
  "contact": {
    "fullName": "John Doe",
    "firstName": "John",
    "lastName": "Doe",
    "emailAddress": "johndoe@email.com",
    "phoneNumber": "+1 111 222 333",
    "postalCode": "80147",
    "country": "Italy",
    "notes": "Lorem impsun"
  },
  "deliveryMethods": [
    "VOUCHER"
  ],
  "voucher": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "ticket": {
    "redemptionMethod": "DIGITAL",
    "utcRedeemedAt": null,
    "deliveryOptions": [
      {
        "deliveryFormat": "QRCODE",
        "deliveryValue": "https://example.com/qrcode"
      }
    ]
  },
  "notes": "Lorem ipsum"
}

Last updated