Skip to main content
GET
/
tags
List tags
curl --request GET \
  --url https://api.open.cx/tags \
  --header 'Authorization: Bearer <token>'
[
  {
    "tag_name": "<string>",
    "description": "<string>",
    "exclude_from_auto_tagging": true,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Default Response

tag_name
string
required

The tag name (unique per org)

description
string | null
required

Optional description of what this tag means

exclude_from_auto_tagging
boolean
required

If true, the AI will never auto-apply this tag

created_at
string<date-time>
required
updated_at
string<date-time>
required