> ## Documentation Index
> Fetch the complete documentation index at: https://docs.stateset.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Check brand config drift

> Stored vs recomputed config fingerprint.

### Path parameters

<ParamField path="brand_id" type="string (uuid)" required />

### Response

`object`

<ResponseField name="brand_id" type="string (uuid)" required />

<ResponseField name="slug" type="string" required />

<ResponseField name="config_version" type="integer" required />

<ResponseField name="stored_fingerprint" type="string" required />

<ResponseField name="recomputed_fingerprint" type="string" required />

<ResponseField name="consistent" type="boolean" required>
  False means the runtime config diverged from the audited apply pipeline
</ResponseField>

### Status codes

| Code  | Meaning                                  |
| ----- | ---------------------------------------- |
| `200` | Stored vs recomputed config fingerprint. |
| `400` | Validation error                         |
| `401` | Unauthorized                             |
| `404` | Not found                                |
| `429` | Rate limited                             |
| `500` | Internal error                           |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/config/drift' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "brand_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "slug": "acme-outdoors",
    "config_version": 1,
    "stored_fingerprint": "string",
    "recomputed_fingerprint": "string",
    "consistent": true
  }
  ```
</ResponseExample>
