Skip to main content
DELETE
/
collections
/
{collection}
/
taxonomy
/
{category}
/
children
/
{child}
Delete a category's child object
import requests

url = "http://api/apollo/collections/{collection}/taxonomy/{category}/children/{child}"

response = requests.delete(url)

print(response.text)

Path Parameters

collection
string
required

The name of a collection

category
string
required

The name of a category

child
string
required

The name of a category object

Query Parameters

parentVersion
string

The category's latest version, for optimistic concurrency control

Response

default

successful operation