Adyen · Schema

AcceptTermsOfServiceRequest

PaymentsFinancial ServicesFintech

Properties

Name Type Description
acceptedBy string The legal entity ID of the user accepting the Terms of Service. For organizations, this must be the individual legal entity ID of an authorized signatory for the organization. For sole proprietorships
ipAddress string The IP address of the user accepting the Terms of Service.
View JSON Schema on GitHub

JSON Schema

adyen-accepttermsofservicerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AcceptTermsOfServiceRequest",
  "title": "AcceptTermsOfServiceRequest",
  "properties": {
    "acceptedBy": {
      "description": "The legal entity ID of the user accepting the Terms of Service.\n\nFor organizations, this must be the individual legal entity ID of an authorized signatory for the organization.\n\nFor sole proprietorships, this must be the individual legal entity ID of the owner.",
      "type": "string"
    },
    "ipAddress": {
      "description": "The IP address of the user accepting the Terms of Service.",
      "type": "string"
    }
  },
  "required": [
    "acceptedBy"
  ],
  "type": "object"
}