Euler Finance · Example Payload

Completeplatformauthcallback

Validates state, nonce, Google ID-token claims, and active platform-admin access.

Auth

Completeplatformauthcallback is an example object payload from Euler Finance, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummarydescriptiontagsparametersresponses

Example Payload

Raw ↑
{
  "operationId": "completePlatformAuthCallback",
  "method": "GET",
  "path": "/v3/auth/callback",
  "summary": "Complete platform-operator Google SSO callback",
  "description": "Validates state, nonce, Google ID-token claims, and active platform-admin access.",
  "tags": [
    "Auth"
  ],
  "parameters": [
    {
      "name": "code",
      "in": "query",
      "required": true,
      "example": "string"
    },
    {
      "name": "state",
      "in": "query",
      "required": true,
      "example": "string"
    }
  ],
  "responses": {
    "400": {
      "description": "Invalid callback, state, nonce, or ID token.",
      "schema": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    },
    "403": {
      "description": "Google identity is not an active platform admin.",
      "schema": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    }
  }
}