Skip to main content
GET
/
v1
/
10dlc
/
subgroups
List SubGroups
curl --request GET \
  --url https://api.example.com/v1/10dlc/subgroups \
  --header 'X-API-Key: <x-api-key>'
{
  "success": true,
  "subgroups": [
    {}
  ],
  "count": 123
}
Retrieve all subgroups created for your tenant.

Authentication

X-API-Key
string
required
Your API key

Query Parameters

tenant_id
string
Your tenant identifier. Must match the tenant associated with your API key. If provided with a mismatched value, the request will be rejected with a 403 error.

Response

success
boolean
Whether the request was successful
subgroups
array
Array of subgroup objects
count
integer
Total number of subgroups

Example Request

curl -X GET "https://api.teli.ai/v1/10dlc/subgroups?tenant_id=telitest" \
  -H "X-API-Key: YOUR_API_KEY"

Example Response

200
{
  "success": true,
  "subgroups": [
    {
      "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "subgroup_id": "SQ8YFT",
      "subgroup_name": "West Coast Division",
      "tenant_id": "telitest",
      "created_at": "2026-01-15T10:30:00Z"
    }
  ],
  "count": 1,
  "powered_by": "Teli"
}