Consumer Object

Attributes

AttributeTypeDescription
phoneNumberstringThe consumer’s phone number. Limited to 32 characters.
givenNamesstring requiredThe consumer’s first name and any middle names. Limited to 128 characters.
surnamestring requiredThe consumer’s last name. Limited to 128 characters.
emailstring requiredThe consumer’s email address. Limited to 128 characters.

Example Consumer Object

Australia

1{
2 "phoneNumber": "0400 000 000",
3 "givenNames": "Joe",
4 "surname": "Consumer",
5 "email": "test@example.com"
6}

New Zealand

1{
2 "phoneNumber": "0200 000 000",
3 "givenNames": "Joe",
4 "surname": "Consumer",
5 "email": "test@example.com"
6}

United States of America

1{
2 "phoneNumber": "(415) 200-0000",
3 "givenNames": "Joe",
4 "surname": "Consumer",
5 "email": "test@example.com"
6}