curl --request GET \
--url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/workflow-bindings' \
--header "x-api-key: $STATESET_TEMPORAL_API_KEY"
{
"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"
}
]
}
List workflow bindings
List every brand_workflow_bindings row for the brand (all template_keys and versions, ordered by priority ASC, created_at ASC)…
GET
/
v1
/
brands
/
{brand_id}
/
workflow-bindings
curl --request GET \
--url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/workflow-bindings' \
--header "x-api-key: $STATESET_TEMPORAL_API_KEY"
{
"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"
}
]
}
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/{brand_id} 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
string (uuid)
required
Query parameters
integer
Max items (capped at 1000).
integer
string
Filter by status.
Response
object
WorkflowBindingRecord[]
required
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 |
curl --request GET \
--url 'https://api.workstream.stateset.com/v1/brands/{brand_id}/workflow-bindings' \
--header "x-api-key: $STATESET_TEMPORAL_API_KEY"
{
"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"
}
]
}
Last modified on August 31, 2026