cURL
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" } ] }
List all organizations the current user belongs to
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Response for GET /me/orgs.
Show child attributes
Was this page helpful?