Skip to main content
DELETE
Detach tags from a dataset

Authorizations

Authorization
string
header
required

Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format

Path Parameters

dataset_id
string
required

The unique dataset identifier (base64) A universally unique identifier (base64-encoded opaque string).

Example:

"RW50aXR5OjEyMzQ1"

Body

application/json

Body containing the IDs of the tags to detach from the resource

tag_ids
string[]
required

IDs of the tags to detach. Up to 100 per request. An ID that is not currently attached is reported in not_deleted rather than causing the whole request to fail, so the same request can be retried safely.

Required array length: 1 - 100 elements

A universally unique identifier (base64-encoded opaque string).

Response

Reports which tags were detached and which were not attached

completed
boolean
required

True when every requested tag ID was attached and has been detached. False when one or more requested IDs appear in not_deleted.

deleted
string[]
required

IDs of the tags that were attached and have been detached.

A universally unique identifier (base64-encoded opaque string).

not_deleted
string[]
required

IDs from the request that were not attached to the resource. Not an error — detaching an already-detached tag is a no-op.

A universally unique identifier (base64-encoded opaque string).