Get the caller's organizations
GET
/organizations/me
Organizations the authenticated caller holds an active org-scoped role on. Flat array, no pagination.
Authorizations
BearerAuth
Authentication is handled automatically via httpOnly session cookies after signing in at /cognito/signin or via Google SSO at /cognito/oauth/google. For Swagger UI testing, paste a JWT token from the /cognito/signin response.
Type
HTTP (bearer)
Responses
Caller's organizations
application/json
JSON
{
"data": [
{
"id": "string",
"legal_name": "string",
"slug": "string",
"verification_status": "string",
"kind": "string",
"role_name": "string",
"role_display_name": "string",
"role_hierarchy_level": 0,
"is_current": true
}
]
}