Documentation Index
Fetch the complete documentation index at: https://docs.teli.ai/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve all subgroups created for your tenant.
Authentication
Query Parameters
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
Whether the request was successful
Array of subgroup objects
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
{
"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"
}