curl --request PUT \
--url https://api.boostgpt.co/v1/bot/workflow/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"project_id": "<string>",
"bot_id": "<string>",
"name": "<string>",
"workflow_id": "<string>",
"description": "<string>",
"trigger_type": "<string>",
"trigger_event": "<string>",
"trigger_config": {},
"conditions": [
{}
],
"actions": [
{}
],
"is_active": true,
"status": "<string>"
}
'