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

Delete Group

DELETE
https://platform-api.convirza.com/v3/groups/{id}
Groups
Last modified:2026-04-03 14:27:57
Soft-deletes a group (organizational unit) by marking its status as deleted. The group's historical data, call records, and configuration are preserved in the database.
What happens on delete
org_unit_status is set to deleted.
The group disappears from active hierarchy views, user selectors, and reporting filters.
deleted_at and deleted_by (the admin user ID) are recorded for audit purposes.
All historical call data attributed to this group remains searchable by Admins.
Restrictions — deletion is blocked when:
The group has active child sub-groups. You must delete or reassign all children first.
The group has users currently assigned to it. Reassign or delete all users first.
The group is a root/billing-level organization unit (top-level orgs cannot be deleted via API).
Reversibility
Soft deletion is not reversible via this API.

Request

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

Responses

🟢200
application/json
Group deleted successfully
Body

🟠400
🟠401
🟠404
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://platform-api.convirza.com/v3/groups/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "code": 200,
    "message": "Resource deleted successfully",
    "data": null,
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "timestamp": "2026-03-29T12:00:00.000Z"
}
Modified at 2026-04-03 14:27:57
Previous
Partial Update Group
Next
Create Group
Built with