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

Create User

POST
https://platform-api.convirza.com/v3/users
Users
Last modified:2026-04-03 14:27:57
Creates a new user account and assigns them to an organizational unit with a specified role.
Business rules
The email address must be unique across the entire platform — duplicate emails are rejected with a conflict response.
The role_id must correspond to a valid role (Admin, Standard, ReadOnly).
The ct_user_ou_id (org unit) must exist and be within the authenticated admin's hierarchy.
A temporary default password is set automatically. The new user should be prompted to change it on first login.
Optional fields
user_ext_id — your own internal identifier to map this user to an external system.
timezone — defaults to the org unit timezone if not provided.
agent_ring_to — the phone number calls are forwarded to for this agent.
agent_code — numeric code used in IVR flows to identify this agent.
score_call / access_audio — enable scorecard and audio playback access respectively.
Response
Returns the new user's ct_user_id and a success flag. Use GET /users/:id to retrieve the full profile after creation.

Request

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

Examples

Responses

🟢201
application/json
User created successfully
Body

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://platform-api.convirza.com/v3/users' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "admin@example.com",
    "first_name": "Admin",
    "last_name": "User",
    "ct_user_ou_id": 1001,
    "role": "Admin",
    "user_ext_id": "EXT-ADMIN-001",
    "user_status": "active",
    "aliases": null,
    "timezone": "America/New_York",
    "agent_ring_to": "+1234567890",
    "agent_code": 10,
    "score_call": true,
    "access_audio": true
}'
Response Response Example
201 - Example 1
{
    "code": 200,
    "message": "Success",
    "data": {
        "userId": 12346
    },
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2026-01-20T12:34:56.789Z"
}
Modified at 2026-04-03 14:27:57
Previous
Delete User
Next
List Child Groups
Built with