Metadata taxonomies
Update metadata taxonomy node
Updates an existing metadata taxonomy node.
patch/metadata_taxonomies/{namespace}/{taxonomy_key}/nodes/{node_id}
Path parameters
namespacestring required
The namespace of the metadata taxonomy.
taxonomy_keystring required
The key of the metadata taxonomy.
node_idstring required
The identifier of the metadata taxonomy node.
Request body
Example request
{
"displayName": "France"
}Response
The schema representing the updated taxonomy node.
Example response
{
"id": "14d3d433-c77f-49c5-b146-9dea370f6e32",
"displayName": "France",
"level": 2,
"parentId": "99df4513-7102-4896-8228-94635ee9d330",
"nodePath": [
"99df4513-7102-4896-8228-94635ee9d330"
],
"ancestors": [
{
"id": "14d3d433-c77f-49c5-b146-9dea370f6e32",
"displayName": "France",
"level": 2
}
]
}