Arcade · Example Payload

Arcade Engine Tool Execute Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Tool Execute Example is an example object payload from Arcade, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationmethodpathsummaryrequestresponse

Example Payload

Raw ↑
{
  "operation": "tool-execute",
  "method": "POST",
  "path": "/v1/tools/execute",
  "summary": "Execute Tool",
  "request": {
    "include_error_stacktrace": true,
    "input": null,
    "run_at": "string",
    "tool_name": "string",
    "tool_version": "string",
    "user_id": "string"
  },
  "response": {
    "duration": 1.0,
    "execution_id": "string",
    "execution_type": "string",
    "finished_at": "string",
    "id": "string",
    "output": {
      "authorization": null,
      "error": null,
      "logs": [],
      "value": null
    },
    "run_at": "string",
    "status": "string",
    "success": true
  }
}