curl --request POST \
--url 'https://api.nsr.stateset.com/v1/decisions/{id}/outcome' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"outcome": "string"
}'
{
"recorded": true
}
Record the real-world outcome of a past decision — the write side of the
outcome loop that makes confidence measurable. honored means the decision held up; reversed (e.g…
POST
/
v1
/
decisions
/
{id}
/
outcome
curl --request POST \
--url 'https://api.nsr.stateset.com/v1/decisions/{id}/outcome' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"outcome": "string"
}'
{
"recorded": true
}
outcome loop that makes confidence measurable.
honored means the decision
held up; reversed (e.g. an approved refund charged back), overridden
(a human changed it), escalated. 404 if the decision has rotated out of
the retained window.
Required scope: write
Path parameters
string
required
Request body
RecordOutcomeRequest
string
required
honored | reversed | overridden | escalated.Response
RecordOutcomeResponse
boolean
required
Status codes
| Code | Meaning |
|---|---|
200 | Outcome recorded |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request POST \
--url 'https://api.nsr.stateset.com/v1/decisions/{id}/outcome' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"outcome": "string"
}'
{
"recorded": true
}
Last modified on August 31, 2026