Retrieve a Subaccount

GEThttps://api.vobiz.ai/api/v1/accounts/{account_id}/sub-accounts/{sub_account_id}

Retrieves the detail of a specific Subaccount by its ID.

Authentication: Requires Bearer Token (JWT). Pass your access token in the Authorization header.

Request

cURL
curl -X GET 'https://api.vobiz.ai/api/v1/accounts/{account_id}/sub-accounts/{sub_account_id}' \
--header 'X-Auth-ID: {auth_id}' \
--header 'X-Auth-Token: {auth_token}'

Arguments

No arguments need to be passed.

Response Example

Success Response (200 OK)
{
  "name": "Support Team",
  "description": "Support-facing voice workload",
  "permissions": {
    "calls": true,
    "cdr": true
  },
  "rate_limit": 500,
  "id": "SA_67401KW8",
  "parent_account_id": "{Auth_ID}",
  "auth_id": "inG9oUky5uFjdUECaQNzeyVYD6ommaJd",
  "is_active": true,
  "created_at": "2025-10-22T03:57:35.997500Z",
  "updated_at": "2025-10-22T03:57:35.997500Z",
  "last_used": null
}