Arcade · Example Payload

Arcade Engine Auth Providers Create Example

AgentsMCPAI AgentsAuthorizationOAuthTool CallingAgent InfrastructureLLMIntegrations

Arcade Engine Auth Providers Create 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": "auth-providers-create",
  "method": "POST",
  "path": "/v1/admin/auth_providers",
  "summary": "Create an Auth Provider",
  "request": {
    "description": "string",
    "external_id": "string",
    "id": "string",
    "oauth2": {
      "authorize_request": null,
      "client_id": "string",
      "client_secret": "string",
      "pkce": null,
      "refresh_request": null,
      "scope_delimiter": ",",
      "token_introspection_request": null,
      "token_request": null,
      "user_info_request": null
    },
    "provider_id": "string",
    "status": "string",
    "type": "string"
  },
  "response": {
    "binding": {
      "id": "string",
      "type": null
    },
    "created_at": "string",
    "description": "string",
    "id": "string",
    "oauth2": {
      "authorize_request": null,
      "client_id": "string",
      "client_secret": null,
      "pkce": null,
      "redirect_uri": "string",
      "refresh_request": null,
      "scope_delimiter": "string",
      "token_introspection_request": null,
      "token_request": null,
      "user_info_request": null
    },
    "provider_id": "string",
    "status": "string",
    "type": "string",
    "updated_at": "string"
  }
}