User Space API
Read-only endpoints that any authenticated user can call to retrieve details about their organisation, project, spaces, and features.
Unlike the System API, these endpoints do not require X-Server-Key — they are scoped to the calling user's identity via X-Org-Id, X-Project-Id, and X-User-Id.
Get Project Detail
Returns full details of the project including database connection metadata.
GET /minimal/rest/user/v1/project/detail
Required Headers
| Header | Description |
|---|---|
X-Org-Id | Organisation identifier |
X-Project-Id | Project identifier |
X-User-Id | Authenticated user's identifier |
Get Project
Returns a summary of the project.
GET /minimal/rest/user/v1/project
Required Headers
| Header | Description |
|---|---|
X-Org-Id | Organisation identifier |
X-Project-Id | Project identifier |
X-User-Id | Authenticated user's identifier |
Get Org Detail
Returns full details of the organisation.
GET /minimal/rest/user/v1/org/detail
Required Headers
| Header | Description |
|---|---|
X-Org-Id | Organisation identifier |
X-Project-Id | Project identifier |
X-User-Id | Authenticated user's identifier |
Get Org
Returns a summary of the organisation.
GET /minimal/rest/user/v1/org
Required Headers
| Header | Description |
|---|---|
X-Org-Id | Organisation identifier |
X-Project-Id | Project identifier |
X-User-Id | Authenticated user's identifier |
Get Spaces
Returns all spaces available to the user under the specified organisation and project.
GET /minimal/rest/user/v1/space
Required Headers
| Header | Description |
|---|---|
X-Org-Id | Organisation identifier |
X-Project-Id | Project identifier |
X-User-Id | Authenticated user's identifier |
Get Features
Returns all features available to the user under the specified organisation and project.
GET /minimal/rest/user/v1/feature
Required Headers
| Header | Description |
|---|---|
X-Org-Id | Organisation identifier |
X-Project-Id | Project identifier |
X-User-Id | Authenticated user's identifier |
Common Errors
| Code | Cause |
|---|---|
400 | Missing or malformed header |
401 | Missing X-User-Id header |
404 | Org or project not found — check X-Org-Id and X-Project-Id |