List spaces in project
List all spaces in a project
Authentication: personal access token. The spec defines an api_key security
scheme — send an Authorization: ApiKey <your-personal-access-token> header
(value format: ApiKey <your key>). A session_cookie scheme (connect.sid)
exists for browser sessions. Operations in this spec declare security: [], an
artifact of the upstream spec generator — authentication is still enforced by the
server.
Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
projectUuid | string | Yes | The uuid of the project to get spaces for |
Responses
200 — Success
{
"results": [
{
"name": "string",
"slug": "string",
"uuid": "string",
"organizationUuid": "string",
"projectUuid": "string",
"inheritParentPermissions": true,
"projectMemberAccessRole": {},
"pinnedListUuid": "string",
"pinnedListOrder": 0,
"parentSpaceUuid": "string",
"path": "string",
"deletedBy": {
"lastName": "string",
"firstName": "string",
"userUuid": "string"
},
"deletedAt": "2024-01-01T00:00:00.000Z",
"appCount": 0,
"childSpaceCount": 0,
"dashboardCount": 0,
"chartCount": 0,
"access": [
"string"
],
"userAccess": {
"grantedVia": "app",
"inheritedFrom": "organization",
"inheritedRole": "member",
"projectRole": "viewer",
"hasDirectAccess": true,
"role": "viewer",
"userUuid": "string"
},
"inheritsFromOrgOrProject": true
}
],
"status": "ok"
}default — Error
{
"error": {
"data": "string",
"message": "string",
"name": "string",
"statusCode": 0
},
"status": "error"
}Get download activity log
Get download activity log for a project, ordered by most recent first. Two pagination modes are supported: - Offset mode: pass `page` (1-indexed) and `pageSize`. Response includes `page`/`totalResults`/`totalPageCount`. - Cursor mode: pass `cursor` (from a previous response's `nextCursor`) and `pageSize`. `page` is ignored when `cursor` is provided. Avoids the count query so `page`/`totalResults`/`totalPageCount` are null in the response.
Rename resources
Rename resources in a project