> ## 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.

# Revoke brand api key

> Key revoked, effective immediately.

### Path parameters

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

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

### Request body

JSON body of type `GenericObject`.

### Response

No response body. Key revoked, effective immediately.

### Status codes

| Code  | Meaning                             |
| ----- | ----------------------------------- |
| `204` | Key revoked, effective immediately. |
| `400` | Validation error                    |
| `401` | Unauthorized                        |
| `404` | Not found                           |
| `429` | Rate limited                        |
| `500` | Internal error                      |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/api-keys/{key_id}/revoke' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY" \
    --header 'Content-Type: application/json' \
    --data '{}'
  ```
</RequestExample>
