Euler Finance · Example Payload

Logoutplatformauthsession

Auth

Logoutplatformauthsession 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": "logoutPlatformAuthSession",
  "method": "POST",
  "path": "/v3/auth/logout",
  "summary": "End current platform-operator session",
  "description": "",
  "tags": [
    "Auth"
  ],
  "responses": {
    "200": {
      "description": "Session cookies were cleared.",
      "schema": {
        "type": "object",
        "required": [
          "data",
          "meta"
        ],
        "properties": {
          "data": {
            "type": "object",
            "required": [
              "loggedOut"
            ],
            "properties": {
              "loggedOut": {
                "type": "boolean"
              }
            }
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    },
    "401": {
      "description": "Invalid signed platform-admin session.",
      "schema": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    },
    "403": {
      "description": "Missing or mismatched CSRF token, or inactive platform-admin access.",
      "schema": {
        "$ref": "#/components/schemas/ErrorResponse"
      }
    }
  }
}