List review requests
Requests to review (routed to the caller) or the caller's own requests
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 |
Query parameters
| Name | Type | Required | Description |
|---|---|---|---|
view | string | No | |
status | string | No | |
page | number | No | |
pageSize | number | No |
Responses
200 — Success
{
"results": {
"pagination": {
"page": 0,
"pageSize": 0,
"totalResults": 0,
"totalPageCount": 0
},
"data": [
{
"updatedAt": "2024-01-01T00:00:00.000Z",
"createdAt": "2024-01-01T00:00:00.000Z",
"grantedPrincipals": [
{
"principal": {
"uuid": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"type": "user"
},
"resourceUuid": "string",
"resourceType": "dashboard"
}
],
"movedContent": [
{
"name": "string",
"contentUuid": "string",
"contentType": "chart"
}
],
"verifiedOnApprove": true,
"reviewNote": "string",
"reviewedAt": "2024-01-01T00:00:00.000Z",
"reviewedBy": {
"lastName": "string",
"firstName": "string",
"userUuid": "string"
},
"status": "pending",
"similarContent": [
{
"score": 0,
"isVerified": true,
"spaceName": "string",
"spaceUuid": "string",
"slug": "string",
"name": "string",
"contentUuid": "string",
"contentType": "chart"
}
],
"requestNote": "string",
"requestedBy": {
"lastName": "string",
"firstName": "string",
"userUuid": "string"
},
"targetSpaceUuid": "string",
"sourceSpaceUuid": "string",
"contentUuid": "string",
"contentType": "chart",
"projectUuid": "string",
"uuid": "string",
"targetSpaceName": "string",
"sourceSpaceName": "string",
"content": {
"slug": "string",
"name": "string"
}
}
]
},
"status": "ok"
}default — Error
{
"error": {
"data": "string",
"message": "string",
"name": "string",
"statusCode": 0
},
"status": "error"
}