Arcade · Example Payload

Arcade Engine Initiate Authorization Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Initiate Authorization 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": "initiate-authorization",
  "method": "POST",
  "path": "/v1/auth/authorize",
  "summary": "Initiate Authorization",
  "request": {
    "auth_requirement": {
      "id": "string",
      "oauth2": null,
      "provider_id": "string",
      "provider_type": "string"
    },
    "next_uri": "string",
    "user_id": "string"
  },
  "response": {
    "context": {
      "token": "string",
      "user_info": {}
    },
    "id": "string",
    "provider_id": "string",
    "scopes": [
      "string"
    ],
    "status": null,
    "url": "string",
    "user_id": "string"
  }
}