***

title: create
slug: /reference/python/rest/fabric/call-flows/create
description: Create a new call flow resource.
max-toc-depth: 3
---------------------

For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

Create a new call flow resource.

<EndpointSchemaSnippet endpoint="POST /api/fabric/resources/call_flows" />

## **Response Example**

<EndpointResponseSnippet endpoint="POST /api/fabric/resources/call_flows" />

## **Example**

```python {9}
from signalwire.rest import RestClient

client = RestClient(
    project="your-project-id",
    token="your-api-token",
    host="your-space.signalwire.com",
)

result = client.fabric.call_flows.create(
    title="Main IVR Flow",
)
print(f"Created: {result['id']}")
```