v1
latestOpenAPI 3.0.32026-07-264616.2 KBResume Crew Execution with Human Feedback
📋 Reference Example Only - This shows the request format. To test with your actual crew, copy the cURL example and replace the URL + token with your real values.
Resume a paused crew execution with human feedback for Human-in-the-Loop (HITL) workflows. When a task with human_input=True completes, the crew execution pauses and waits for human feedback.
IMPORTANT: You must provide the same webhook URLs (taskWebhookUrl, stepWebhookUrl, crewWebhookUrl) that were used in the original kickoff call. Webhook configurations are NOT automatically carried over - they must be explicitly provided in the resume request to continue receiving notifications.
post/resume
Request body
Example request
{
"execution_id": "abcd1234-5678-90ef-ghij-klmnopqrstuv",
"task_id": "research_task",
"human_feedback": "Great research! Please add more details about recent developments in the field.",
"is_approve": true,
"taskWebhookUrl": "https://your-server.com/webhooks/task",
"stepWebhookUrl": "https://your-server.com/webhooks/step",
"crewWebhookUrl": "https://your-server.com/webhooks/crew"
}Response
Execution resumed successfully
Example response
{
"status": "resumed",
"message": "Execution resumed successfully"
}