For the complete documentation index, see llms.txt. This page is also available as Markdown.

Content | 4. Geodata properties

Updating properties for Routes and POIs

The following properties are identical for Routes and POIs

A) Update Custom ID

To set or update the customID you need the GUIBO ID of the Asset.

This example updates the POI with GUIBO ID "pppppp" .

  • Replace pppppp with the ID, you can find it in the Edit Route/Edit POI > Metadata section.

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

curl --location --request PATCH 'https://services.schneidergeo.com/content/geodata/pppppp/customid' \
  --header 'Authorization: xxxxxx-xxxxxx-xxxxxx-xxxxxx' \
  --header 'Content-Type: application/json' \
  --data-raw '
  {"value":"PALI242"}
  '

B) Updating Tags

To add or remove a tag you need the GUIBO ID of the Asset and the ID of the tag.

This example updates the POI with GUIBO ID "pppppp" .

  • Replace pppppp with the ID, you can find it in the Edit Route/Edit POI > Metadata section.

  • Replace aaaaaa with the Account ID

  • Replace tttttt with the ID of the tag

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

List Tags

Create Tag

Add Tag to Geoasset

Remove Tag from Geoasset

C) Move asset to new category

To move Route or POI to a different category/stage you need the GUIBO ID of the Asset

This example moves the POI with GUIBO ID "pppppp" to the category with GUIBO ID "cccccc"

  • Replace pppppp with the ID, you can find it in the Edit Route/Edit POI > Metadata section.

  • Replace cccccc with the ID of the category

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

Last updated