curl --request DELETE \
--url 'https://api.nsr.stateset.com/api/v1/triples' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"object_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"predicate": "string",
"subject_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Delete a triple (fact)
Hard-delete a triple. Required scope: admin
DELETE
/
api
/
v1
/
triples
curl --request DELETE \
--url 'https://api.nsr.stateset.com/api/v1/triples' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"object_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"predicate": "string",
"subject_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Hard-delete a triple.
Required scope:
admin
Request body
DeleteTripleRequest
string
required
string
required
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 |
curl --request DELETE \
--url 'https://api.nsr.stateset.com/api/v1/triples' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"object_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"predicate": "string",
"subject_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'
Last modified on August 31, 2026