ConsistlyAPI
Rules

List brand rules

Returns the active brand rules for the caller’s organisation. When the org has no custom rules configured, the response includes Consistly’s default rule templates so a fresh integration still has something to lint against.

GET
/brand_rules
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_rules"
{  "object": "list",  "data": [    {      "id": "string",      "object": "brand_rule",      "organization": "string",      "name": "string",      "type": "string",      "severity": "low",      "active": true,      "auto_fixable": true,      "pattern": "string",      "replacement": "string",      "created": "2019-08-24T14:15:22Z",      "updated": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "url": "string"}