List My Organisations
List all organisations the authenticated user is a member of.
Membership scoping is applied by organisation_provider.search
based on the security context, not by an explicit filter here.
Args:
created_at: Optional FHIR-style prefixed datetime filters on
creation time.
updated_at: Optional FHIR-style prefixed datetime filters on
last-updated time.
q: Optional contains-search filter on organisation name.
is_active: Optional filter on active status.
provisioning_mode: Optional filter on provisioning mode
(invite_only, jit, or scim).
_sort: Optional sort field (name, created_at, or
updated_at), with a leading "-" for descending.
Authorization
OAuth2AuthorizationCodeBearer In: header
Query Parameters
Filter by creation time, FHIR-style prefixed datetime search
Filter by last-updated time, FHIR-style prefixed datetime search
Filter by organisation name (contains search)
Filter by active status
Filter by provisioning mode: invite_only, jit, scim
Sort field with optional - prefix for descending. Supported: name, created_at, updated_at
true1 <= value <= 1001001 <= value1Response Body
application/json
application/json
curl -X GET "https://example.com/v1/organisations"{ "page": 0, "page_size": 0, "has_next": true, "has_previous": true, "total_pages": 0, "items": [ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "slug": "string", "name": "string", "description": "string", "avatar_url": "string", "is_personal": false, "owner_username": "string", "is_active": true, "require_sso": false, "provisioning_mode": "invite_only", "created_at": "2019-08-24T14:15:22Z", "member_count": 0, "custom_variables": { "property1": "string", "property2": "string" } } ]}{ "detail": [ { "loc": [ "string" ], "msg": "string", "type": "string" } ]}