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

Settings Tags

List Tags

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200

List of tags

application/json
totalRowsnumberOptional
get/settings/tags

Create Tag

post
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
labelstringRequired

The display label of the tag.

colorstringOptional

The color of the tag (hex code).

Responses
200

Successfully created tag

application/json
idstringRequired

The unique ID of the tag.

labelstringRequired

The display label of the tag.

colorstringRequired

The color of the tag (hex code)

post/settings/tags

Retrieve Tag

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Tag

Responses
200

Details about the tag

application/json
idstringRequired

The unique ID of the tag.

labelstringRequired

The display label of the tag.

colorstringRequired

The color of the tag (hex code)

get/settings/tags/{id}

Update Tag

put
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Tag

Body
idstringRequired

The unique ID of the tag.

labelstringRequired

The display label of the tag.

colorstringRequired

The color of the tag (hex code)

Responses
200

Successfully updated tag

application/json
idstringRequired

The unique ID of the tag.

labelstringRequired

The display label of the tag.

colorstringRequired

The color of the tag (hex code)

put/settings/tags/{id}

Delete Tag

delete
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID of the Tag

Responses
204

Tag successfully deleted

No content

delete/settings/tags/{id}

No content

Last updated

Was this helpful?