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"
}
]List all tags for your organization. Tags categorize chat sessions (e.g. “billing”, “refund”, “feature-request”). The AI can auto-tag sessions based on these.
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"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Default Response
Was this page helpful?