Facebook
LinkedIn
YouTube
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
Getting Started
Authentication
Authentication
  • V2 Authentication (Deprecated)
  • V3 Authentication
V2 API Documentation (Deprecated)V3 API Documentation
  1. Miscellaneous
  • Platform
    • Users
      • List Users
      • Get User Details
      • Update User
      • Partial Update User
      • Delete User
      • Create User
    • Groups
      • List Child Groups
      • Get Group Tree
      • Get Group Details
      • List Groups
      • Get Org Unit Hierarchy
      • Update Group
      • Partial Update Group
      • Delete Group
      • Create Group
    • Webhooks
      • List Webhooks
      • Get Webhook Details
      • Update Webhook
      • Partial Update Webhook
      • Delete Webhook
      • Create Webhook
    • Media Prompts
      • List Prompts
      • Upload Prompt
      • Delete Prompt
  • AI Voice Agents
    • List AI Voice Agents
      GET
    • Create Agent
      POST
    • Get Agent Details
      GET
    • Update Agent
      PUT
    • Partial Update Agent
      PATCH
    • Delete Agent
      DELETE
  • Phone Numbers
    • Assigned Numbers
      GET
    • Provisioned Numbers
      GET
    • Reserved Numbers
      DELETE
    • Phone Numbers
      POST
    • Available Numbers
      GET
  • Provisioned Routes
    • List Provisioned Routes
      GET
    • Create Provisioned Route
      POST
    • Get Provisioned Route Details
      GET
    • Delete Provisioned Route
      DELETE
    • Update Provisioned Route
      PUT
    • Partial Update Provisioned Route
      PATCH
  • SMS Broadcasts
    • List Broadcasts
    • Create Broadcast
    • Get Broadcast Details
    • Update Broadcast
    • Partial Update Broadcast
    • Delete Broadcast
  • Conversation
    • Calls
      • Get Calls List
      • Get Call By ID
    • SMS
      • Get SMS Conversations
  • Miscellaneous
    • List Ad Sources
      GET
    • List Industries
      GET
    • List Tags
      GET
    • Create Tag
      POST
    • Update Tag
      PUT
    • Delete Tag
      DELETE
  1. Miscellaneous

List Tags

GET
https://platform-api.convirza.com/v3/tag/{org_unit_id}
Miscellaneous
Last modified:2026-04-03 14:27:57
Returns a paginated list of call tags available within the specified organizational unit.
What tags are used for
Tags are labels applied to call records by agents or automated rules to categorize call outcomes, topics, and quality indicators. Examples: "Lead", "Appointment Booked", "Complaint", "Follow-up Required".
Tag types
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.
Filtering and sorting
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).
Pagination
Uses 0-based page indexing. page=0, limit=100 returns the first 100 tags.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Query Params

Responses

🟢200
application/json
Successfully retrieved tags list
Body

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://platform-api.convirza.com/v3/tag/?search&sort&tag_type&status&offset&limit&direction' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "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"
}
Modified at 2026-04-03 14:27:57
Previous
List Industries
Next
Create Tag
Built with