Euler Finance · Example Payload

Deleteadminapikeysbyid

Auth

Deleteadminapikeysbyid 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": "deleteAdminApiKeysById",
  "method": "DELETE",
  "path": "/v3/admin/api-keys/{id}",
  "summary": "Revoke API key (admin)",
  "description": "",
  "tags": [
    "Auth"
  ],
  "parameters": [
    {
      "name": "id",
      "in": "path",
      "required": true,
      "example": "string"
    }
  ],
  "responses": {
    "200": {
      "description": "Revoked",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object"
          }
        }
      }
    }
  }
}