> ## 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 triple (fact)

> Hard-delete a triple. **Required scope:** admin

Hard-delete a triple.

**Required scope:** `admin`

### Request body

`DeleteTripleRequest`

<ParamField body="object_id" type="string" required />

<ParamField body="predicate" type="string" required />

<ParamField body="subject_id" type="string" required />

### Response

No response body. Triple deleted.

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `200` | Triple deleted                                     |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `404` | No such triple in this organization                |
| `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/triples' \
    --header 'X-API-Key: YOUR_API_KEY' \
    --header 'Content-Type: application/json' \
    --data '{
    "object_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "predicate": "string",
    "subject_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
  }'
  ```
</RequestExample>
