v1
latestOpenAPI 3.0.32026-07-248003061.1 MBFlows
Create or update flow
Create a new flow or update an existing one. The flow id is taken from the request body.
post/flow
Query parameters
account_idstring
The account ID. Defaults to the user's default account.
Request body
Example request
{
"steps": [
{
"delay_until": {
"time_of_day": "09:30",
"timezone": "America/New_York"
}
}
]
}Response
Updated Flow
Example response
{
"data": {
"steps": [
{
"delay_until": {
"time_of_day": "09:30",
"timezone": "America/New_York"
}
}
]
}
}