Skip to main content
GET
/
me
/
orgs
List My Organizations
curl --request GET \
  --url https://api.example.com/me/orgs \
  --header 'Authorization: Bearer <token>'
{
  "orgs": [
    {
      "org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "role": "<string>",
      "status": "<string>",
      "plan": "free",
      "parent_org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "billing_org_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Headers

X-API-Key
string | null

Response

Successful Response

Response for GET /me/orgs.

orgs
OrgSummary · object[]
required