> For the complete documentation index, see [llms.txt](https://apidocs.api19.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.api19.com/my-inventory/list-call-flows.md).

# List Call Flows

## GET Request

{% hint style="info" %}
<https://v1.api19.com/dids/my/callflows>
{% endhint %}

Send us a GET  request with your key.

{% tabs %}
{% tab title="Curl Post" %}

```
curl -X GET https://v1.api19.com/dids/callflows/list \
 -u 'api_token:api_token'
```

{% endtab %}

{% tab title="Curl Get" %}

```
curl https://v1.api19.com/dids/callflows/list&key=apitoken \
```

{% endtab %}

{% tab title="JSON Response" %}

```json
{
    "status": "ok",
    "fax_flows": [
        {
            "id": "1",
            "name": "FaxNums 1",
            "emails_json": null,
            "emails_allowed_in": "[\"josh@gmail.com\"]"
        }
    ]
    "call_flows": [
        {
            "id": "1",
            "name": "Main Route",
            "user_id": "1",
            "json": "{\"dnis\":\"3424\",\"route1\":\"1.1.1.1\",\"sip_port1\":5060,\"route1_wait\":30,\"wait\":30,\"route2\":\"2.2.2.2\",\"sip_port2\":5060,\"route2_wait\":30}",
            "e164": "no"
        },
        {
            "id": "3",
            "name": "LA Servers",
            "user_id": "1",
            "json": "{\"route1\":\"device:694\",\"route1_wait\":13,\"sip_port1\":5060,\"wait\":13,\"dnis\":\"\",\"route2\":\"5.5.5.5\",\"sip_port2\":5060,\"route2_wait\":13,\"route1_simul\":\"device:1\"}",
            "e164": "no"
        }
    ]
}

```

{% endtab %}
{% endtabs %}
