2.1.1 UserEmailAddresses object
The UserEmailAddresses object represents the collection of email addresses linked to a user account.
If a user account has email addresses, exactly one address will be the primary email address. This is the address used by Drillster to send messages to. All other email addresses are considered to be secondary email addresses – these can be used to log in, but no messages will be sent to a secondary address.
Example
{
"total": 1,
"userEmailAddresses": [ {
"emailAddress": {
"address": "thomas@example.com",
"verified": false
},
"primary": true
} ]
}
Fields
Field | Type | Description |
---|---|---|
total required |
Integer | The number of email addresses linked to the account. |
userEmailAddresses required |
List of 2.1.1 UserEmailAddress objects | The actual user email addresses. |
Last updated on