Skip to main content
POST
/
v1
/
flows
curl -X POST https://api.whatabot.app/api/v1/flows \
  -H "X-Api-Key: wh_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"name": "My Flow"}'

Documentation Index

Fetch the complete documentation index at: https://docs.whatabot.app/llms.txt

Use this file to discover all available pages before exploring further.

Create a new flow associated with a workspace.
X-Api-Key
string
required
Your API key (prefixed with wh_).

Body

name
string
required
The name of the flow.

Payload examples

{
  "name": "My Flow"
}
curl -X POST https://api.whatabot.app/api/v1/flows \
  -H "X-Api-Key: wh_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"name": "My Flow"}'