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.
Authorization
ApiKey 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"}Authenticated connectivity check (Brand surface) GET
Confirms the API key resolves on the Brand Governance surface. Identical semantics to /api/public/v1/ping; the `surface` field is set to `brand` so clients can tell the two ping endpoints apart in logs.
Replace the brand rule set PUT
Bulk-replace operation: the request body becomes the authoritative rule set for the caller’s organisation. Previously persisted rules absent from the body are deleted. Maximum 50 rules per request.