API reference

List your tenants

Returns every tenant the authenticated user has accepted membership in.

GET/v1/admin/tenants

Request

bash
curl https://api-raven-cloud.autotribes.app/v1/admin/tenants \
  -H "Authorization: Bearer eyJ..." \
  -H "X-App-Name: raven-cloud"

Response

json
[
  {
    "id": "8ad4f7c2-...",
    "slug": "acme-co",
    "name": "Acme Co",
    "role": "owner",
    "status": "active",
    "plan": "free"
  }
]