CrewAI Cloud · Schema

CrewAI AMP Resume Request

Request payload for POST /resume — human-in-the-loop feedback on a paused task.

AI AgentsAI Agent PlatformAgent OrchestrationMulti-Agent SystemsAgent Management PlatformManaged AgentsAutomationsObservabilityHuman In The Loop

Properties

Name Type Description
execution_id string The kickoff_id returned by /kickoff.
task_id string Identifier of the task awaiting human feedback.
human_feedback string Feedback incorporated as additional context.
is_approve boolean true to proceed; false to retry the task with the feedback.
taskWebhookUrl string
stepWebhookUrl string
crewWebhookUrl string
View JSON Schema on GitHub

JSON Schema

crewai-cloud-resume-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/crewai-cloud/main/json-schema/crewai-cloud-resume-schema.json",
  "title": "CrewAI AMP Resume Request",
  "description": "Request payload for POST /resume — human-in-the-loop feedback on a paused task.",
  "type": "object",
  "required": ["execution_id", "task_id", "human_feedback", "is_approve"],
  "properties": {
    "execution_id": {
      "type": "string",
      "format": "uuid",
      "description": "The kickoff_id returned by /kickoff."
    },
    "task_id": {
      "type": "string",
      "description": "Identifier of the task awaiting human feedback."
    },
    "human_feedback": {
      "type": "string",
      "description": "Feedback incorporated as additional context."
    },
    "is_approve": {
      "type": "boolean",
      "description": "true to proceed; false to retry the task with the feedback."
    },
    "taskWebhookUrl": { "type": "string", "format": "uri" },
    "stepWebhookUrl": { "type": "string", "format": "uri" },
    "crewWebhookUrl": { "type": "string", "format": "uri" }
  },
  "additionalProperties": false
}