Euler Finance · Example Payload

Getadminapikeys

Auth

Getadminapikeys 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": "getAdminApiKeys",
  "method": "GET",
  "path": "/v3/admin/api-keys",
  "summary": "List API keys (admin)",
  "description": "",
  "tags": [
    "Auth"
  ],
  "responses": {
    "200": {
      "description": "API keys",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ApiKeyResponse"
            }
          }
        }
      }
    }
  }
}