Arcade · Example Payload

Arcade Engine Auth Status Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

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

Top-level fields

operationmethodpathsummaryresponse

Example Payload

Raw ↑
{
  "operation": "auth-status",
  "method": "GET",
  "path": "/v1/auth/status",
  "summary": "Check Authorization Status",
  "response": {
    "context": {
      "token": "string",
      "user_info": {}
    },
    "id": "string",
    "provider_id": "string",
    "scopes": [
      "string"
    ],
    "status": null,
    "url": "string",
    "user_id": "string"
  }
}