Arcade · Example Payload

Arcade Engine Tool Requirements Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Tool Requirements 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-requirements",
  "method": "POST",
  "path": "/v1/tools/requirements",
  "summary": "Check Tool Requirements",
  "request": {
    "authorize": true,
    "tool_names": [
      "string"
    ],
    "tools": [
      {
        "tool_name": null,
        "tool_version": null
      }
    ],
    "user_id": "string"
  },
  "response": {
    "authorization": {
      "items": {},
      "met": true
    },
    "met": true,
    "secrets": {
      "items": {},
      "met": true
    }
  }
}