Pular para o conteúdo principal
POST

Autorizações

Authorization
string
header
obrigatório

📋 Referência - Os tokens mostrados são apenas exemplos. Use seus tokens reais do painel do CrewAI AMP.

Corpo

application/json
execution_id
string<uuid>
obrigatório

The unique identifier for the crew execution (from kickoff)

Exemplo:

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

task_id
string
obrigatório

The ID of the task that requires human feedback

Exemplo:

"research_task"

human_feedback
string
obrigatório

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

Exemplo:

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

is_approve
boolean
obrigatório

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

Exemplo:

true

taskWebhookUrl
string<uri>

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

Exemplo:

"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.

Exemplo:

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

crewWebhookUrl
string<uri>

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

Exemplo:

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

Resposta

Execution resumed successfully

status
enum<string>

Status of the resumed execution

Opções disponíveis:
resumed,
retrying,
completed
Exemplo:

"resumed"

message
string

Human-readable message about the resume operation

Exemplo:

"Execution resumed successfully"