Composio · Schema

ExecuteToolResponse

AI AgentsAuthenticationIntegrationsMCPOAuthSandboxToolsTriggersUnified_APIWebhooks

Properties

Name Type Description
success boolean Whether the execution succeeded.
output object The output from the tool execution.
error string Error message if execution failed.
View JSON Schema on GitHub

JSON Schema

composio-executetoolresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExecuteToolResponse",
  "title": "ExecuteToolResponse",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the execution succeeded."
    },
    "output": {
      "description": "The output from the tool execution."
    },
    "error": {
      "type": "string",
      "description": "Error message if execution failed."
    }
  }
}