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

# Delete a predicate signature

> **Required scope:** admin

**Required scope:** `admin`

### Path parameters

<ParamField path="name" type="string" required>
  Predicate name
</ParamField>

### Response

No response body. Predicate deleted.

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `204` | Predicate deleted                                  |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `404` | Predicate not found                                |
| `429` | Rate limited — see Retry-After / X-RateLimit-Reset |

<RequestExample>
  ```bash cURL theme={null}
  curl --request DELETE \
    --url 'https://api.nsr.stateset.com/api/v1/types/predicates/{name}' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>
