메인 콘텐츠로 건너뛰기
POST
/
resume
curl --request POST \
--url https://your-actual-crew-name.crewai.com/resume \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"execution_id": "abcd1234-5678-90ef-ghij-klmnopqrstuv",
"task_id": "research_task",
"human_feedback": "Excellent research! Proceed to the next task.",
"is_approve": true,
"taskWebhookUrl": "https://api.example.com/webhooks/task",
"stepWebhookUrl": "https://api.example.com/webhooks/step",
"crewWebhookUrl": "https://api.example.com/webhooks/crew"
}'
{
"status": "resumed",
"message": "Execution resumed successfully"
}

Authorizations

Authorization
string
header
required

📋 참고 - 예시의 토큰은 자리 표시자입니다. 실제 토큰을 사용하세요.

Body

application/json
execution_id
string<uuid>
required

The unique identifier for the crew execution (from kickoff)

Example:

"abcd1234-5678-90ef-ghij-klmnopqrstuv"

task_id
string
required

The ID of the task that requires human feedback

Example:

"research_task"

human_feedback
string
required

Your feedback on the task output. This will be incorporated as additional context for subsequent task executions.

Example:

"Great research! Please add more details about recent developments in the field."

is_approve
boolean
required

Whether you approve the task output: true = positive feedback (continue), false = negative feedback (retry task)

Example:

true

taskWebhookUrl
string<uri>

Callback URL executed after each task completion. MUST be provided to continue receiving task notifications.

Example:

"https://your-server.com/webhooks/task"

stepWebhookUrl
string<uri>

Callback URL executed after each agent thought/action. MUST be provided to continue receiving step notifications.

Example:

"https://your-server.com/webhooks/step"

crewWebhookUrl
string<uri>

Callback URL executed when the crew execution completes. MUST be provided to receive completion notification.

Example:

"https://your-server.com/webhooks/crew"

Response

Execution resumed successfully

status
enum<string>

Status of the resumed execution

Available options:
resumed,
retrying,
completed
Example:

"resumed"

message
string

Human-readable message about the resume operation

Example:

"Execution resumed successfully"

I