Euler Finance · Example Payload

Getplatformauthsession

Auth

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

Top-level fields

operationIdmethodpathsummarydescriptiontagsresponses

Example Payload

Raw ↑
{
  "operationId": "getPlatformAuthSession",
  "method": "GET",
  "path": "/v3/auth/session",
  "summary": "Get current platform-operator session",
  "description": "",
  "tags": [
    "Auth"
  ],
  "responses": {
    "200": {
      "description": "Active platform-admin session identity.",
      "schema": {
        "type": "object",
        "required": [
          "data",
          "meta"
        ],
        "properties": {
          "data": {
            "$ref": "#/components/schemas/PlatformAuthSession"
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    },
    "401": {
      "description": "Missing, invalid, or expired platform-admin session.",
      "schema": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    },
    "403": {
      "description": "Authenticated session exists, but platform-admin access is not active.",
      "schema": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    }
  }
}