Orgs | API & MCP Reference | Archera

Endpoints for organizations accessible to the authenticated user

List accessible organizations

GET /v1/orgs

Returns the list of organizations that the authenticated user has access to. This includes:

Each organization includes the user's role and membership kind.

Responses

200 OK

{
  "org_id": "string",  
  "name": "string",  
  "role": "string",  
  "kind": "undefined"
}

Error Responses

Example Request

GET /v1/orgs HTTP/1.1
Accept: */*

Example Response

[
  {
    "org_id": "text",
    "name": "text",
    "role": "user",
    "kind": "direct"
  }
]