Get organization
PlatformRetrieve an organization, its status, hierarchy metadata and associated tenant references.
Isolation
Tenant-scoped by design
Hierarchy
Organizations + sub-organizations
Access
Membership + role context
Configuration
Policies, modules & branding
GET
/v1/organizations/{id}Scope: organizations.readEndpoint summary
| Method | Endpoint | Required scope |
|---|---|---|
| GET | /v1/organizations/{id} | organizations.read |
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Organization identifier |
Example request
GET /v1/organizations/{id}Copy
GET /v1/organizations/{id}
Authorization: Bearer $ACCESS_TOKENExample response
200 OKCopy
{
"id":"org_01",
"name":"Clinique Centrale",
"type":"clinic",
"status":"active"
}Organization model
| Field | Type | Description |
|---|---|---|
| id | string | Immutable organization identifier |
| name | string | Display / legal organization name |
| type | enum | hospital, clinic, pharmacy_group, supplier, healthtech, other |
| status | enum | draft, active, suspended, archived |
| parent_organization_id | string | null | Optional parent organization |
| primary_tenant_id | string | null | Primary operational tenant reference |