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

# Per-partner operational status board: volume, compliance rate, open

> exceptions, and last activity, derived from the documents log and ack SLA.

exceptions, and last activity, derived from the documents log and ack SLA.

### Response

`StatusBoardEntry[]` — each element:

<ResponseField name="accepted" type="integer" required />

<ResponseField name="compliance_rate" type="integer (int32)">
  Accepted ÷ (accepted + rejected), as a percentage 0–100. `None` when no document has a definitive accept/reject verdict yet.
</ResponseField>

<ResponseField name="documents_total" type="integer" required />

<ResponseField name="health" type="string" required>
  Overall health: `healthy`, `attention`, `idle`.
</ResponseField>

<ResponseField name="inbound" type="integer" required />

<ResponseField name="last_activity" type="string (date-time)">
  Most recent document activity, if any.
</ResponseField>

<ResponseField name="open_exceptions" type="integer" required>
  Open exceptions needing operator attention (rejections + overdue acks).
</ResponseField>

<ResponseField name="outbound" type="integer" required />

<ResponseField name="overdue_acks" type="integer" required>
  Outbound documents still awaiting a partner 997 past the ack SLA.
</ResponseField>

<ResponseField name="partner_id" type="string" required />

<ResponseField name="partner_name" type="string" required />

<ResponseField name="rejected" type="integer" required />

<ResponseField name="sent" type="integer" required />

### Status codes

| Code  | Meaning                        |
| ----- | ------------------------------ |
| `200` | Per-partner operational health |
| `403` | Admin credential required      |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://edi.stateset.com/v1/status-board' \
    --header 'Authorization: Bearer YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "accepted": 1,
      "compliance_rate": 8,
      "documents_total": 49,
      "health": "string",
      "inbound": 1,
      "last_activity": "2026-08-31T14:22:05Z",
      "open_exceptions": 1,
      "outbound": 1,
      "overdue_acks": 1,
      "partner_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "partner_name": "string",
      "rejected": 1,
      "sent": 1
    }
  ]
  ```
</ResponseExample>
