> ## Documentation Index
> Fetch the complete documentation index at: https://docs.penbox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Flow Options

> Previous version of Get Form Template Options.

<Warning>
  Previous API version. Use [`GET /form_templates/{slug}/options`](/api-reference/flows/get-flow-options) for new integrations. This route still works but is deprecated.
</Warning>

Retrieve the configuration options for a specific flow (now called a form template).

```text theme={null}
GET https://connect.penbox.io/v1/flows/{slug}/options
```

## Path Parameters

| Parameter | Type   | Description     |
| --------- | ------ | --------------- |
| `slug`    | string | Flow identifier |

<Note>
  The exact structure of the options object depends on the flow configuration. Different flows may expose different options.
</Note>

## Example

```bash cURL theme={null}
curl 'https://connect.penbox.io/v1/flows/client-onboarding/options' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
```

## Response Codes

| Code  | Description                               |
| ----- | ----------------------------------------- |
| `200` | Success                                   |
| `401` | Unauthorized                              |
| `403` | Forbidden                                 |
| `404` | Not Found — flow not found or not enabled |
| `429` | Too Many Requests                         |
| `500` | Server Error                              |
