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

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

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

<ParamField path="id" type="string" required />

### Request body

`RecordOutcomeRequest`

<ParamField body="outcome" type="string" required>
  `honored` | `reversed` | `overridden` | `escalated`.
</ParamField>

### Response

`RecordOutcomeResponse`

<ResponseField name="recorded" type="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 |

<RequestExample>
  ```bash cURL theme={null}
  curl --request POST \
    --url 'https://api.nsr.stateset.com/v1/decisions/{id}/outcome' \
    --header 'X-API-Key: YOUR_API_KEY' \
    --header 'Content-Type: application/json' \
    --data '{
    "outcome": "string"
  }'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "recorded": true
  }
  ```
</ResponseExample>
