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

# Detach an evidence node from a triple.

> **Required scope:** admin

**Required scope:** `admin`

### Path parameters

<ParamField path="triple_id" type="string" required>
  Triple ID as subject:predicate:object or org:subject:predicate:object
</ParamField>

<ParamField path="evidence_id" type="string" required>
  Evidence node ID
</ParamField>

### Response

No response body. Evidence detached.

### Status codes

| Code  | Meaning                                            |
| ----- | -------------------------------------------------- |
| `204` | Evidence detached                                  |
| `400` | Invalid request                                    |
| `401` | Unauthorized — missing or invalid credentials      |
| `403` | Forbidden — the key/token lacks the required scope |
| `404` | Triple or evidence link 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/triples/{triple_id}/evidence/{evidence_id}' \
    --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>
