ConsistlyAPI
Palettes

List brand colour palettes

Returns the colour palettes configured for the caller’s organisation, each with its constituent colours inlined. Gradient palettes are exposed separately at /brand_gradients in a later phase.

GET
/brand_palettes
AuthorizationBearer <token>

Bearer API key. Brand Governance endpoints require brand:read or brand:write (plus narrower writes for specific resources).

In: header

Response Body

application/json

curl -X GET "https://example.com/brand_palettes"
{  "object": "list",  "data": [    {      "id": "string",      "object": "brand_palette",      "organization": "string",      "name": "string",      "sort_order": 0,      "allow_brand_shades": true,      "colors": [        {          "id": "string",          "name": "string",          "hex": "string",          "sort_order": 0        }      ],      "created": "2019-08-24T14:15:22Z",      "updated": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "url": "string"}