GET api/contacts/{id}/contactalternateemailaddresses
Get all ContactAlternateEmailAddresses that are related to the supplied Contact id.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The primary key of the Contact record in the Hobsons database. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ContactAlternateEmailAddressDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
The primary key of the record in the Hobsons database. |
integer |
None. |
| CrmNumber |
The identifier of the Contact associated with the given record. |
integer |
Required Range: inclusive between 1 and 2147483647 |
| EmailAddress | string |
String length: inclusive between 0 and 254 |
Response Formats
application/json, text/json
Sample:
{
"Id": 1,
"CrmNumber": 2,
"EmailAddress": "sample string 3"
}