v1

latestOpenAPI 3.0.2Apache-2.02026-07-142963051.0 MB
Metadata taxonomies

Add metadata taxonomy level

Creates a new metadata taxonomy level and appends it to the existing levels. If there are no levels defined yet, this will create the first level.

post/metadata_taxonomies/{namespace}/{taxonomy_key}/levels:append

Path parameters

namespacestring required

The namespace of the metadata taxonomy.

taxonomy_keystring required

The key of the metadata taxonomy.

Request body

displayNamestring required

The display name of the taxonomy level.

descriptionstring

The description of the taxonomy level.

Example request

{
  "displayName": "France",
  "description": "French Republic"
}

Response

Returns an array of all taxonomy levels.

Example response

{
  "entries": [
    {
      "displayName": "Continent",
      "description": "Continent",
      "level": 1
    }
  ]
}