top of page

Import Point-of-Interests (POIs)

POIs can be created manually in GUIBO and also with the help of Google search and automatic import of data from Google.
In addition, POIs can also be imported from external systems into GUIBO automatically via the API.

Prerequisite:
You have created a library or a travel plan into which the POIs are to be imported. You have given the travel plan or library a unique ID. In the following example it is the ID "235".

Screenshot 2020-12-02 at 16.48.13.png
  • Replace CCCCCC with the customer ID, you can find this under Account Settings > General Settings > Account ID

  • Replace xxxxxx-xxxxxx-xxxxxx-xxxxxx with the API key, you can find this under Account Settings > General Settings > API Key

curl --location --request POST 'https://services.schneidergeo.com/content/library/235/CCCCCC/poi' \

--header 'Content-Type: application/json' \

--header 'Authorization: xxxxxx-xxxxxx-xxxxxx-xxxxxx' \

--data-raw '

{

  "externalId" :"HTL21344",

  "names": {

    "de": "Alpenhotel Kronprinz",

    "en": "Alpenhotel Kronprinz"

  },

  "descriptions": {

    "de": "Unser Partnerhotel in Berchtesgaden",

    "en": "Our partner hotel in Berchtesgaden"

  },

  "lat": 47.62893,

  "lng": 12.99443,

  "icon": "hotel",

  "category": {

    "names": {

      "de": "Unterkunft",

      "en": "Accomodation"

    }

  },

  "attributes": {

    "phone": "+49 8652 6070",

    "web": "https://www.alpenhotel-kronprinz.de/"

  },

  "tags": [

        {

             "names": {

                   "de": "Vegane Restaurants",

                   "en": "Vegan Restaurants"

               }

         },

          {

             "names": {

                   "de": "Kinderfreundliche Unterkunft",

                   "en": "Family friendly accomodation"

               }

         }

    ]

}

'

bottom of page