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

# Order fulfillment status

> The workflow status as one string, <status>:<phase> — for example 'running:review_gate' or 'completed:dispatched'…

### Path parameters

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

### Response

Returns `string`.

<Note>
  The spec this page is generated from declares this response as an untyped object — the server
  returns JSON, but its shape is not published. Read a live response to see the fields; treat any
  field you find as unversioned until the spec names it.
</Note>

### Status codes

| Code  | Meaning                                                                                                                                                                                                          |
| ----- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `200` | The workflow status as one string, `&lt;status>:&lt;phase>` — for example `'running:review_gate'` or `'completed:dispatched'`. The handler returns `Json&lt;String>`, not the object the upstream spec declares. |
| `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/workflows/order-fulfillment/{workflow_id}/status' \
    --header "x-api-key: $STATESET_TEMPORAL_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  "running:review_gate"
  ```
</ResponseExample>
