Join a webinar on April 30th: Unlocking Your Data using AI with Box Extract & MCP Server. Register here
client.metadata_taxonomies.add_metadata_taxonomy_level(
namespace, taxonomy_key, "Region", description="Region Description"
){
"entries": [
{
"displayName": "Continent",
"description": "Continent",
"level": 1
}
]
}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.
client.metadata_taxonomies.add_metadata_taxonomy_level(
namespace, taxonomy_key, "Region", description="Region Description"
){
"entries": [
{
"displayName": "Continent",
"description": "Continent",
"level": 1
}
]
}The access token received from the authorization server in the OAuth 2.0 flow.
The namespace of the metadata taxonomy.
The key of the metadata taxonomy.
Returns an array of all taxonomy levels.
Levels in the metadata taxonomy represent hierarchical categories within the taxonomy structure.
An array of all taxonomy levels.
Show child attributes
Was this page helpful?