Content | Guidebook / Library

Libraries and guidebooks have the same structure, they are both bundling Textpages, Routes and POIs. Therefore the procedure of creating them is the same, only the endpoint address is different.

A) Create Guidebook or Library

Create a guidebook with a customID helps to reference it when creating a Release. The attribute "customId" can be referenced by the parameter "externalGuidebookId" as explained in this article:

Release | Create guidebook release

Create guidebook by using the path "guidebook", create libary by using the path "library".

  • Replace CCCCC with the Account ID, you can find this under Account Settings > General Settings > Account ID

  • You can find the API key under Account Settings > General Settings > API Key


curl --location -X POST 'https://services.schneidergeo.com/content/guidebook' \
--header 'Authorization: xxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxx' \
--header 'Content-Type: application/json' \
--data '{
    "account":"CCCCCC",
    "customId":"ABCABC",
    "names":{
        "de":"Transalp mit dem Gravelbike",
        "en":"TRANS-ALP ON GRAVEL BIKE"
    }
}'

Headers

Name
Type
Description

Authorization*

String

API key

B) Delete Guidebook or Library

Delete guidebook by using the path "guidebook", create libary by using the path "library".

  • Replace GGGGGG with the Guidebook ID,

  • You can find the API key under Account Settings > General Settings > API Key

Headers

Name
Type
Description

Authorization*

String

API key

Last updated