user — custom tags created by account admins for their specific workflows.system — platform-level tags applied automatically by Convirza (e.g. disposition tags).all (default) — return both user and system tags.search — partial, case-insensitive search against the tag name.sort — field to sort on: tag_name (alphabetical) or call_count (most-used first).direction — ASC or DESC (default: ASC).page=0, limit=100 returns the first 100 tags.curl --location --request GET 'https://platform-api.convirza.com/v3/tag/?search&sort&tag_type&status&offset&limit&direction' \
--header 'Authorization: Bearer <token>'{
"code": 200,
"message": "Success",
"data": {
"tags": [
{
"tag_id": 123,
"tag_name": "Sales Lead",
"org_unit_id": 70035,
"call_count": 42,
"editable": true
},
{
"tag_id": 124,
"tag_name": "Customer Service",
"org_unit_id": 70035,
"call_count": 18,
"editable": false
}
],
"total": 45
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}