Skip to content

Create a taxonomy

POST
/api/content/management/taxonomies
curl --request POST \
--url https://example.com/api/content/management/taxonomies \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "name": "Product Categories", "description": "example", "shortName": "example", "properties": { "additionalProperty": "example" } }'

Creates a new taxonomy for categorizing content

Media typeapplication/json
object
name
required

Taxonomy name (required)

string
Example
Product Categories
description

Taxonomy description

string
shortName

Short name for tags (auto-generated if not provided)

string
properties

Custom properties

object
key
additional properties

Taxonomy created successfully

Media typeapplication/json
object
id
required
string
Examplegenerated
{
"id": "example"
}

Invalid request