GET api/entity/family/GetPhoneNumbers

Gets the phone numbers associated with the specified families.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
FamilyIDs

Collection of integer

None.

Since

date

None.

Body Parameters

None.

Response Information

Resource Description

WebMethodResultOfDictionaryOfInt32AndListOfPhoneNumber
NameDescriptionTypeAdditional 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"}