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:

pageRelease | Read release details

a) Change 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

NameTypeDescription

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) Change 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

NameTypeDescription

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) Change 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

NameTypeDescription

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
}

Last updated