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.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/legal-entity-accept-terms-of-service-request-schema.json",
"title": "AcceptTermsOfServiceRequest",
"description": "AcceptTermsOfServiceRequest schema from Adyen API",
"type": "object",
"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"
]
}