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

# Get purchase orders by status

> Get purchase orders by status

### Path parameters

<ParamField path="status" type="string" required>
  Purchase order status
</ParamField>

### Responses

<ResponseField name="200" type="ApiResponse_Value">
  Purchase orders by status
</ResponseField>

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

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": null,
    "errors": null,
    "message": null,
    "meta": null,
    "success": true
  }
  ```
</ResponseExample>
