Release | Update release details

After creating a guidebook release, you can update attributes of the release.

You need GUIBO's internal unique identifier of the release to update it. It is the parameter "link" when fetching the release details:

Release | Read release details

a) Update the number of devices

PATCH https://services.schneidergeo.com/content/release/{account}/{release}/devices/{devices}Change numer of devices

Change the number of devices the guidebook can be downloaded to.

Path Parameters

Name
Type
Description

account*

String

Your account ID, you can find this under Account Settings > General Settings > Account ID

release*

String

Unique identifier of the release

devices*

String

The number of devices or users

{
    // Response
}

b) Update the release period

PATCH https://services.schneidergeo.com/content/release/{account}/{release}/period

Change start- and enddate for the release period. During this period the App can be downloaded, the Booklet is accessable and the GPX files.

Path Parameters

Name
Type
Description

account*

String

Your account ID, you can find this under Account Settings > General Settings > Account ID

release*

String

Unique identifier of the release

Request body

{
    "start":"2024-05-01",
    "end":"2024-05-02"
}
{
    // Response
}

c) Update arrival and departure dates

PATCH https://services.schneidergeo.com/content/release/{account}/{release}/tripperiod

Change arrival and departure date of the trip. This helps the App to provide the relevant content on each day

Path Parameters

Name
Type
Description

account*

String

Your account ID, you can find this under Account Settings > General Settings > Account ID

release*

String

Unique identifier of the release

Request Body

{
    "start":"2024-05-01",
    "end":"2024-05-02"
}

{
    // Response
}

d) Update Accommodation

PUT https://services.schneidergeo.com/content/release/{account}/{release}/accommodation

Replace all accommodations in a release

Path Parameters

Name
Type
Description

account*

String

Your account ID, you can find this under Account Settings > General Settings > Account ID

release*

String

Unique identifier of the release

Request Body

{ "assets":
    [
        {
            "externalId": "AT04_HotelDonauzentrum",
            "libraryExternalId": "TO-POI",
            "category":"catxyz"
        }
       
    ]
}

e) Update Language

PATCH https://services.schneidergeo.com/content/release/{account}/{release}/lang/{language}

Update language for release

Name
Type
Description

account*

String

Your account ID, you can find this under Account Settings > General Settings > Account ID

release*

String

Unique identifier of the release

language

String

two characters for the language

Last updated