For the complete documentation index, see llms.txt. This page is also available as Markdown.

Tags

List all tags

get

Returns a list of all tags, optionally filtered by query parameters.

Query parameters
Responses
200

OK

application/json
get/api/tags

Create a new tag

post

Creates a new tag with the provided value.

Body
Responses
201

Created

application/json
post/api/tags

Search tags

post

Search tags using filters in the request body.

Body

Search filters for tags. Can filter by value fields (e.g., target_type).

Responses
200

OK

application/json
post/api/tags/search

Get a tag by ID

get

Returns a single tag by its ID.

Path parameters
idintegerRequired

Tag ID

Responses
200

OK

application/json
get/api/tags/{id}

Update a tag

put

Updates an existing tag with new data.

Path parameters
idintegerRequired

Tag ID

Body
Responses
200

OK

application/json
put/api/tags/{id}

Delete a tag

delete

Permanently deletes a tag.

Path parameters
idintegerRequired

Tag ID

Responses
204

Tag deleted

No content

delete/api/tags/{id}

No content

Update a tag

patch

Updates an existing tag with new data.

Path parameters
idintegerRequired

Tag ID

Body
Responses
200

OK

application/json
patch/api/tags/{id}

Last updated