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

# List brand skip samples

> Sample tickets (sender/subject) behind one skip reason.

### Path parameters

<ParamField path="brand_id" type="string (uuid)" required />

### Query parameters

<ParamField query="limit" type="integer">
  Max items (capped at 1000).
</ParamField>

<ParamField query="offset" type="integer" />

<ParamField query="status" type="string">
  Filter by status.
</ParamField>

### Response

`object`

<ResponseField name="brand_id" type="string (uuid)" required />

<ResponseField name="reason" type="string" required>
  The skip reason that was queried
</ResponseField>

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

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

<ResponseField name="samples" type="object[]" required>
  <Expandable title="samples">
    <ResponseField name="external_id" type="string" />

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

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

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

    <ResponseField name="subject" type="string" />
  </Expandable>
</ResponseField>

### Status codes

| Code  | Meaning                                                 |
| ----- | ------------------------------------------------------- |
| `200` | Sample tickets (sender/subject) behind one skip reason. |
| `400` | Validation error                                        |
| `401` | Unauthorized                                            |
| `404` | Not found                                               |
| `429` | Rate limited                                            |
| `500` | Internal error                                          |

<RequestExample>
  ```bash cURL theme={null}
  curl --request GET \
    --url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/workflows/skip-samples' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "brand_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "reason": "Two-person tent, green — replacement for damaged pole set.",
    "window_days": 1,
    "count": 2,
    "samples": [
      {
        "external_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "started_at": "2026-08-31T14:22:05Z",
        "skip_tag": "string",
        "sender": "string",
        "subject": "Replacement tent pole set"
      }
    ]
  }
  ```
</ResponseExample>
