Authorizations
📋 Reference Documentation - The tokens shown in examples are placeholders for reference only.
Use your actual Bearer Token or User Bearer Token from the CrewAI AMP dashboard for real API calls.
Bearer Token: Organization-level access for full crew operations User Bearer Token: User-scoped access with limited permissions
Body
The unique identifier for the crew execution (from kickoff)
"abcd1234-5678-90ef-ghij-klmnopqrstuv"
The ID of the task that requires human feedback
"research_task"
Your feedback on the task output. This will be incorporated as additional context for subsequent task executions.
"Great research! Please add more details about recent developments in the field."
Whether you approve the task output: true = positive feedback (continue), false = negative feedback (retry task)
true
Callback URL executed after each task completion. MUST be provided to continue receiving task notifications.
"https://your-server.com/webhooks/task"
Callback URL executed after each agent thought/action. MUST be provided to continue receiving step notifications.
"https://your-server.com/webhooks/step"
Callback URL executed when the crew execution completes. MUST be provided to receive completion notification.
"https://your-server.com/webhooks/crew"