Skip to main content
DELETE
Detach tags from a project

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

project_id
string
required

The unique project 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_found 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

removed
string[]
required

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

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

not_found
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).