GET api/entity/person/GetEmailAddresses
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| PersonIDs |
Gets or sets the person ids. |
Collection of integer |
None. |
| Since |
The timestamp to use. This should always be UTC. |
date |
None. |
Body Parameters
None.
Response Information
Resource Description
WebMethodResultOfDictionaryOfInt32AndListOfEmailAddress| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Dictionary of integer [key] and Collection of EmailAddress [value] |
None. |
|
| Success | boolean |
None. |
|
| ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": {
"1": [
{
"Label": 0,
"Email": "sample string 3",
"IsLoginEmail": true
},
{
"Label": 0,
"Email": "sample string 3",
"IsLoginEmail": true
}
],
"2": [
{
"Label": 0,
"Email": "sample string 3",
"IsLoginEmail": true
},
{
"Label": 0,
"Email": "sample string 3",
"IsLoginEmail": true
}
]
},
"Success": true,
"ErrorText": "sample string 2"
}
application/javascript
Sample:
{"Result":{"1":[{"Label":0,"Email":"sample string 3","IsLoginEmail":true},{"Label":0,"Email":"sample string 3","IsLoginEmail":true}],"2":[{"Label":0,"Email":"sample string 3","IsLoginEmail":true},{"Label":0,"Email":"sample string 3","IsLoginEmail":true}]},"Success":true,"ErrorText":"sample string 2"}