GET api/entity/person/staff/GetPhoneNumbers
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
WebMethodResultOfDictionaryOfInt32AndListOfPhoneNumber| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | Dictionary of integer [key] and Collection of PhoneNumber [value] |
None. |
|
| Success | boolean |
None. |
|
| ErrorText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": {
"1": [
{
"LocationFlagID": 0,
"TypeID": 0,
"Type": 0,
"Label": 0,
"Number": "sample string 3"
},
{
"LocationFlagID": 0,
"TypeID": 0,
"Type": 0,
"Label": 0,
"Number": "sample string 3"
}
],
"2": [
{
"LocationFlagID": 0,
"TypeID": 0,
"Type": 0,
"Label": 0,
"Number": "sample string 3"
},
{
"LocationFlagID": 0,
"TypeID": 0,
"Type": 0,
"Label": 0,
"Number": "sample string 3"
}
]
},
"Success": true,
"ErrorText": "sample string 2"
}
application/javascript
Sample:
{"Result":{"1":[{"LocationFlagID":0,"TypeID":0,"Type":0,"Label":0,"Number":"sample string 3"},{"LocationFlagID":0,"TypeID":0,"Type":0,"Label":0,"Number":"sample string 3"}],"2":[{"LocationFlagID":0,"TypeID":0,"Type":0,"Label":0,"Number":"sample string 3"},{"LocationFlagID":0,"TypeID":0,"Type":0,"Label":0,"Number":"sample string 3"}]},"Success":true,"ErrorText":"sample string 2"}