Skip to main content
PUT
/
tags
Create or update a tag
curl --request PUT \
  --url https://api.open.cx/tags \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tag_name": "<string>",
  "exclude_from_auto_tagging": true
}
'
{
  "statusCode": 123,
  "message": "<string>",
  "error": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
tag_name
string
required

Tag name (e.g. "billing", "refund", "feature-request")

exclude_from_auto_tagging
boolean

If true, the AI will never auto-apply this tag (default: false)

Response

Default Response