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. Users
  • Platform
    • Users
      • List Users
        GET
      • Get User Details
        GET
      • Update User
        PUT
      • Partial Update User
        PATCH
      • Delete User
        DELETE
      • Create User
        POST
    • 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
    • List Industries
    • List Tags
    • Create Tag
    • Update Tag
    • Delete Tag
  1. Users

List Users

GET
https://platform-api.convirza.com/v3/users/list
Users
Last modified:2026-04-03 14:27:57
Returns a filtered and paginated list of users belonging to an organizational unit and all sub-units the authenticated admin has access to.
Scope
If org_unit_id is omitted, the results default to the authenticated user's own organizational unit. The query automatically includes sub-groups within the specified org unit, so you always see the full team hierarchy.
Filtering
name — partial, case-insensitive match against first and last name combined.
email — partial, case-insensitive match against the user's login email address.
role_id — exact match by role ID (e.g. 1=Admin, 2=Standard, 3=ReadOnly).
Sorting
sort_by — field to sort on: created_on (default), name, or email.
sort_order — direction: desc (default, newest first) or asc.
Pagination
limit — maximum records to return (default: 100).
offset — number of records to skip (default: 0).
Authorization
Requires Admin role. Support admin accounts are automatically excluded from results.
Response
Each user record includes profile details (name, email, role), group and account assignment, call access permissions, scorecard assignment, ring-to configuration, and creation timestamp.

Request

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

Responses

🟢200
application/json
Successfully retrieved users list
Body

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://platform-api.convirza.com/v3/users/list?org_unit_id&name&email&role_id&sort_by&sort_order&user_status&limit&offset' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "code": 200,
    "message": "Success",
    "data": {
        "users": [
            {
                "first_name": "John",
                "last_name": "Doe",
                "email": "john.doe@example.com",
                "user_ext_id": "EXT-12345",
                "ct_user_id": 10001,
                "status": "active",
                "agent_ring_to": "+14255551234",
                "agent_id": "AGT-001",
                "group": "Sales Team",
                "group_org_unit_id": 70035,
                "group_external_id": "GRP-70035",
                "account": "Acme Corporation",
                "account_org_unit_id": 60001,
                "account_external_id": "ACC-60001",
                "parent_group": "West Region",
                "parent_group_org_unit_id": 65000,
                "parent_group_external_id": "REG-65000",
                "role": "Standard User",
                "access_audio": "Yes",
                "group_access": 3,
                "report_access": 5,
                "assign_scorecard": true,
                "user_created": "2026-03-29T12:00:00.000Z"
            }
        ],
        "total": 50
    },
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2026-01-20T12:34:56.789Z"
}
Modified at 2026-04-03 14:27:57
Next
Get User Details
Built with