Skip to main content
GET
/
v1
/
subaccounts
/
List All Subaccounts
curl --request GET \
  --url https://api.nedzo.ai/v1/subaccounts/ \
  --header 'Authorization: Bearer <token>'
{
  "status_code": 123,
  "message": "<string>",
  "data": {
    "subaccounts": [
      {
        "name": "<string>",
        "cal_auth_token": "<string>",
        "description": "<string>",
        "business_name": "<string>",
        "city": "<string>",
        "contact_email": "<string>",
        "contact_name": "<string>",
        "contact_phone": "<string>",
        "country": "<string>",
        "timezone": "Pacific/Midway",
        "ein": "<string>",
        "is_limited": true,
        "is_rebilled": true,
        "state": "<string>",
        "street_address": "<string>",
        "zip": "<string>",
        "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "parent_account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "rebilling_plan_id": 123,
        "rebilling_minutes_used": 123,
        "last_single_call": "2023-11-07T05:31:56Z",
        "min_balance": 123,
        "min_limit": 123,
        "min_reset_date": "2023-12-25",
        "min_used": 123
      }
    ],
    "skip": 123,
    "limit": 123,
    "totalCount": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

keyword
string | null
skip
integer
default:0
limit
integer
default:20

Response

Successful Response

status_code
integer
required
message
string
required
data
object | null