Consumer object
Attributes
| Attribute | Type | Description | 
|---|---|---|
| phoneNumber | string | The consumer’s phone number. Limited to 32 characters. | 
| givenNames | string required | The consumer’s first name and any middle names. Limited to 128 characters. | 
| surname | string required | The consumer’s last name. Limited to 128 characters. | 
| email | string required | The consumer’s email address. Limited to 128 characters. | 
Example Consumer object
1 { 2 "phoneNumber": "07000000000", 3 "givenNames": "Joe", 4 "surname": "Consumer", 5 "email": "test@example.com" 6 }