Python
import requests url = "http://api/apollo/collections/{collection}/taxonomy/{category}" payload = { "id": "<string>", "label": "<string>", "version": "<string>", "parameters": [{}], "children": [{}], "parents": ["<string>"] } headers = {"Content-Type": "application/json"} response = requests.put(url, json=payload, headers=headers) print(response.text)
{ "id": "<string>", "label": "<string>", "version": "<string>", "parameters": [ { "key": "<string>", "value": "<string>" } ], "children": [ {} ], "parents": [ "<string>" ] }
The name of a collection
The name of a category
JSON-formatted category configuration
Show child attributes
successful operation
Was this page helpful?