Schedule Flow
Schedules a flow to run in the future or on a recurring interval.
POST /api/agent-react-flow/schedule/:external_id
Request body
{
"schedule": {
"datetime": "2025-01-20T15:00:00.000Z",
"isRecurring": true,
"recurringInterval": {
"value": 1,
"unit": "week",
"weekDays": [1, 3, 5]
},
"endCondition": {
"type": "occurrences",
"value": 10
}
}
}
