Qyra
ReferenceProjects

Get project color palette

Get the resolved color palette for a project, walking the chart -> dashboard -> space -> project -> organization fallback chain (matches saved-chart resolution). The optional UUIDs let unsaved renderers (Explore, AI viz, sql runner) opt into deeper layers as they become available.

GET/api/v1/projects/{projectUuid}/table-groups

Get the resolved color palette for a project, walking the chart -> dashboard -> space -> project -> organization fallback chain (matches saved-chart resolution). The optional UUIDs let unsaved renderers (Explore, AI viz, sql runner) opt into deeper layers as they become available.

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

NameTypeRequiredDescription
projectUuidstringYes

Responses

200 — Success

{
  "results": {
    "property": {
      "description": "string",
      "label": "string"
    }
  },
  "status": "ok"
}

default — Error

{
  "error": {
    "data": "string",
    "message": "string",
    "name": "string",
    "statusCode": 0
  },
  "status": "error"
}