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. Groups
  • Platform
    • Users
      • List Users
      • Get User Details
      • Update User
      • Partial Update User
      • Delete User
      • Create User
    • Groups
      • List Child Groups
        GET
      • Get Group Tree
        GET
      • Get Group Details
        GET
      • List Groups
        GET
      • Get Org Unit Hierarchy
        GET
      • Update Group
        PUT
      • Partial Update Group
        PATCH
      • Delete Group
        DELETE
      • Create Group
        POST
    • 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. Groups

Create Group

POST
https://platform-api.convirza.com/v3/groups
Groups
Last modified:2026-04-03 14:27:57
Creates a new organizational unit (group) and positions it in the account hierarchy under the specified parent.
Business rules
org_unit_name must be unique within the parent group — two sibling groups cannot share the same name.
parent_org_unit_id must reference an existing, active org unit within the authenticated admin's hierarchy.
The hierarchy level (depth) is computed automatically from the parent's position.
A unique org_unit_id is assigned by the system.
Optional configuration
org_unit_ext_id — your own external/CRM identifier for this group, used to link records across systems.
timezone — defaults to the parent group's timezone if not provided.
Spam guard, recording, and DNI settings default to the parent group's configuration unless explicitly overridden.
Response
Returns the new org_unit_id and a success flag.

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
Group created successfully
Body

🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://platform-api.convirza.com/v3/groups' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "org_unit_name": "New Sales Division",
    "org_unit_ext_id": "ORG-2001",
    "org_unit_parent_id": 1000,
    "top_ou_id": 1,
    "billing_id": 1,
    "address": "123 Business Street",
    "city": "New York",
    "state": "NY",
    "zip": "10001",
    "phone_number": "+1234567890",
    "industry_id": 5
}'
Response Response Example
201 - Example 1
{
    "code": 200,
    "message": "Success",
    "data": {
        "orgUnitId": 2001
    },
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2026-01-20T12:34:56.789Z"
}
Modified at 2026-04-03 14:27:57
Previous
Delete Group
Next
List Webhooks
Built with