Properties
| Name | Type | Description |
|---|---|---|
| string | The individual's email address. | |
| firstName | string | The individual's first name. |
| infix | string | The infix in the individual's name, if any. |
| lastName | string | The individual's last name. |
| phoneNumber | string | The individual's phone number, specified as 10-14 digits with an optional `+` prefix. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-contact-schema.json",
"title": "Contact",
"description": "Contact schema from Adyen API",
"type": "object",
"properties": {
"email": {
"description": "The individual's email address.",
"type": "string"
},
"firstName": {
"description": "The individual's first name.",
"type": "string"
},
"infix": {
"description": "The infix in the individual's name, if any.",
"type": "string"
},
"lastName": {
"description": "The individual's last name.",
"type": "string"
},
"phoneNumber": {
"description": "The individual's phone number, specified as 10-14 digits with an optional `+` prefix.",
"type": "string"
}
}
}