Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
subaccounts
List subaccounts
curl --request GET \
  --url https://api.itellico.ai/v1/accounts/{account_id}/subaccounts \
  --header 'X-API-Key: <api-key>'
{
  "count": 123,
  "items": [
    {
      "id": "<string>",
      "name": "<string>",
      "is_active": true,
      "created": "<string>",
      "modified": "<string>",
      "parent_account_id": "<string>"
    }
  ]
}

Authorizations

X-API-Key
string
header
required

Path Parameters

account_id
string
required

Query Parameters

is_active
boolean | null

Filter by active status

limit
integer
default:100
Required range: x >= 1
offset
integer
default:0
Required range: x >= 0

Response

200 - application/json

OK

count
integer
required
items
AccountSchema · object[]
required