GET Phone/{phoneID}
Gets a Phone based on the provided ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| phoneID |
int ID of the Phone item to get |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PhoneChannel object with the given ID
Phone| Name | Description | Type | Additional information |
|---|---|---|---|
| PhoneID | integer |
None. |
|
| VIPID | globally unique identifier |
None. |
|
| PhoneNumber | string |
None. |
|
| CountryCode | string |
None. |
|
| IsActive | boolean |
None. |
|
| DateCreated | date |
None. |
|
| DateModified | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"phoneID": 1,
"vipid": "0a12eb8e-9df1-46f8-904b-a16994c3f776",
"phoneNumber": "sample string 2",
"countryCode": "sample string 3",
"isActive": true,
"dateCreated": "2026-04-21T06:46:08.9694683-04:00",
"dateModified": "2026-04-21T06:46:08.9694683-04:00"
}
text/html
Sample:
{"phoneID":1,"vipid":"0a12eb8e-9df1-46f8-904b-a16994c3f776","phoneNumber":"sample string 2","countryCode":"sample string 3","isActive":true,"dateCreated":"2026-04-21T06:46:08.9694683-04:00","dateModified":"2026-04-21T06:46:08.9694683-04:00"}
application/xml, text/xml
Sample:
<Phone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ContactService.Models"> <CountryCode>sample string 3</CountryCode> <DateCreated>2026-04-21T06:46:08.9694683-04:00</DateCreated> <DateModified>2026-04-21T06:46:08.9694683-04:00</DateModified> <IsActive>true</IsActive> <PhoneID>1</PhoneID> <PhoneNumber>sample string 2</PhoneNumber> <VIPID>0a12eb8e-9df1-46f8-904b-a16994c3f776</VIPID> </Phone>