Euler Finance · Example Payload

Gettermsofusecheckbyaddress

TermsOfUse

Gettermsofusecheckbyaddress 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": "getTermsOfUseCheckByAddress",
  "method": "GET",
  "path": "/v3/terms-of-use/check/{address}",
  "summary": "Check whether an address signed terms of use",
  "description": "",
  "tags": [
    "TermsOfUse"
  ],
  "parameters": [
    {
      "name": null,
      "in": null,
      "required": false
    },
    {
      "name": null,
      "in": null,
      "required": false
    }
  ],
  "responses": {
    "200": {
      "description": "Terms-of-use signature status",
      "schema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "signed": {
                "type": "boolean"
              },
              "signature": {
                "type": "object",
                "nullable": true
              }
            }
          },
          "meta": {
            "$ref": "#/components/schemas/PaginationMeta"
          }
        }
      }
    }
  }
}