Open Gauge
Organizations

List Organizations

Every active organization, name-only for private ones — enough for a non-member to discover a private org exists and request to join it. `mine=true` scopes the list to the caller's own active memberships (e.g. the organization picker on asset creation). Super Admin additionally sees deactivated organizations — the only way to reach one, since it's invisible to everyone else.

GET
/api/v1/organizations

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Query Parameters

skip?Skip
Default0
limit?Limit
Default50
mine?Mine
Defaultfalse

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/organizations"
[  {    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",    "name": "string",    "private": true,    "logo_url": "string",    "is_active": true,    "is_member": false,    "my_role": "member",    "is_last_admin": false,    "has_pending_join_request": false,    "member_count": 0  }]
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}