v1

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

Create metadata taxonomy levels

Creates new metadata taxonomy levels.

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

Path parameters

namespacestring required

The namespace of the metadata taxonomy.

taxonomy_keystring required

The key of the metadata taxonomy.

Request body

displayNamestring

The display name of the level as it is shown to the user.

descriptionstring

A description of the level.

levelinteger

An index of the level within the taxonomy. Levels are indexed starting from 1.

Example request

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

Response

Returns an array of all taxonomy levels.

Example response

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