Personalized Accommodation

When creating a release in GUIBO, you can add booking related information to accommodation POIs:

  • arrival date: The arrival date for this accommodation

  • departure date: The departure date for this accommodation

  • comment: Any booking specific comments (e.g. breakfast included, 3 adults)

What does this look like in the app?

There will be an updated app interface in the coming weeks:

  1. New prominent button "accommodation" at the top of the home screen with an overview list for all accommodations including arrival and departure dates

  2. Optional: start & end accommodation POI as part of each day/stage category

Automated day/stage category mapping

In case you want your hotels to be placed as start & end accommodation within the day/stage categories, you must ensure:

  1. Each day/stage category has a destination POI (Add POI → Display → Icon → destination)

  2. There is a day/stage category for the arrival day with a destination

This is required to minimize data integration costs and to allow for automated release generation, even for hotel variations and non-standard bookings (e.g. additional nights). Based on the distance to the destination POIs (< 5km), GUIBO assigns all start & end accommodation POIs to the right day/stage category.

Update API-Integration

1. Release arrival and departure dates

Update your API integration to include booking dates for the overall trip when creating releases:

...
"arrivaldate":"2025-01-22",
"departuredate": "2025-01-25"
...

2. Accommodation details

Provide the arrival date, departure date as well as any comment or description along with the accommodation POI as follows.

...
"additionalAssets": [
   {
       ...
       "arrivalDate":"2025-09-05",
       "departureDate":"2025-09-06",
       "comment":"A generous breakfast buffet is included"
   }

Click here for an end-to-end example:B) Create download permission with customization.

Last updated