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

# All onboarding records for the tenant, newest activity first.

> Onboarding records

### Response

`OnboardingRecord[]` — each element:

<ResponseField name="blocker" type="string">
  When set, the partner is blocked at the current stage; advancing is refused until cleared.
</ResponseField>

<ResponseField name="created_at" type="string (date-time)" required />

<ResponseField name="history" type="OnboardingEvent[]" required>
  <Expandable title="OnboardingEvent">
    <ResponseField name="actor" type="string" required>
      Principal that made the change (`admin`, `partner:&#123;id&#125;`, or a system tag).
    </ResponseField>

    <ResponseField name="at" type="string (date-time)" required />

    <ResponseField name="from_stage" type="object" />

    <ResponseField name="note" type="string" />

    <ResponseField name="to_stage" type="OnboardingStage" required />
  </Expandable>
</ResponseField>

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

<ResponseField name="stage" type="OnboardingStage" required />

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

<ResponseField name="updated_at" type="string (date-time)" required />

### Status codes

| Code  | Meaning                   |
| ----- | ------------------------- |
| `200` | Onboarding records        |
| `403` | Admin credential required |

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

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "blocker": "string",
      "created_at": "2026-08-31T14:22:05Z",
      "history": [
        {
          "actor": null,
          "at": null,
          "from_stage": null,
          "note": null,
          "to_stage": null
        }
      ],
      "partner_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "stage": "connected",
      "tenant_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "updated_at": "2026-08-31T14:22:05Z"
    }
  ]
  ```
</ResponseExample>
