> ## 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 workflow bindings

> List every brand_workflow_bindings row for the brand (all template_keys and versions, ordered by priority ASC, created_at ASC)…

List every brand\_workflow\_bindings row for the brand (all template\_keys and versions, ordered by priority ASC, created\_at ASC). binding\_config may hold connector KEYS but never secrets.

NOTE: these rows are also writable via `PATCH /v1/brands/&#123;brand_id&#125;` with a `workflow_bindings` array, which DELETE-AND-REINSERTS ALL bindings for the brand (pre-existing behavior) and therefore clobbers rows created through this API. Use one path or the other for a given brand.

### 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="items" type="WorkflowBindingRecord[]" required>
  <Expandable title="WorkflowBindingRecord">
    <ResponseField name="id" type="string (uuid)" required />

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

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

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

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

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

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

    <ResponseField name="priority" type="integer" />

    <ResponseField name="enabled" type="boolean" required />

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

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

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

### Status codes

| Code  | Meaning                                   |
| ----- | ----------------------------------------- |
| `200` | Every workflow binding row for the brand. |
| `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}/workflow-bindings' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "brand_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
        "workflow_type": "string",
        "template_key": "string",
        "template_version": 1,
        "task_queue": "string",
        "binding_config": {},
        "priority": 1,
        "enabled": true,
        "metadata": {},
        "created_at": "2026-08-31T14:22:05Z",
        "updated_at": "2026-08-31T14:22:05Z"
      }
    ]
  }
  ```
</ResponseExample>
