Adyen · JSON Structure

Notification Webhooks Contact Details Structure

ContactDetails schema from Adyen API

Type: object Properties: 4 Required: 3
PaymentsFinancial ServicesFintech

ContactDetails is a JSON Structure definition published by Adyen, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

address email phone webAddress

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/notification-webhooks-contact-details-structure.json",
  "description": "ContactDetails schema from Adyen API",
  "properties": {
    "address": {
      "description": "The address of the account holder.",
      "$ref": "#/components/schemas/Address"
    },
    "email": {
      "description": "The email address of the account holder.",
      "type": "string"
    },
    "phone": {
      "description": "The phone number of the account holder.",
      "$ref": "#/components/schemas/Phone"
    },
    "webAddress": {
      "description": "The URL of the account holder's website.",
      "type": "string"
    }
  },
  "required": [
    "email",
    "phone",
    "address"
  ],
  "type": "object",
  "name": "ContactDetails"
}