GET PhoneChannel/{phoneChannelID}

Gets a PhoneChannel based on the provided ID

Request Information

URI Parameters

NameDescriptionTypeAdditional information
phoneChannelID

int ID of the PhoneChannel item to get

integer

Required

Body Parameters

None.

Response Information

Resource Description

PhoneChannel object with the given ID

PhoneChannel
NameDescriptionTypeAdditional information
PhoneChannelID

integer

None.

PhoneID

integer

None.

VIPID

globally unique identifier

None.

PhoneNumber

string

None.

CountryCode

string

None.

PhoneChannelStatusTypeID

integer

None.

ShortCodeID

integer

None.

IsActive

boolean

None.

DateCreated

date

None.

DateModified

date

None.

Response Formats

application/json, text/json

Sample:
{
  "phoneChannelID": 1,
  "phoneID": 2,
  "vipid": "3e44f85a-0b95-4fcb-976a-6bb629a46b62",
  "phoneNumber": "sample string 3",
  "countryCode": "sample string 4",
  "phoneChannelStatusTypeID": 5,
  "shortCodeID": 6,
  "isActive": true,
  "dateCreated": "2026-04-21T06:56:53.1248109-04:00",
  "dateModified": "2026-04-21T06:56:53.1248109-04:00"
}

text/html

Sample:
{"phoneChannelID":1,"phoneID":2,"vipid":"3e44f85a-0b95-4fcb-976a-6bb629a46b62","phoneNumber":"sample string 3","countryCode":"sample string 4","phoneChannelStatusTypeID":5,"shortCodeID":6,"isActive":true,"dateCreated":"2026-04-21T06:56:53.1248109-04:00","dateModified":"2026-04-21T06:56:53.1248109-04:00"}

application/xml, text/xml

Sample:
<PhoneChannel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ContactService.Models">
  <CountryCode>sample string 4</CountryCode>
  <DateCreated>2026-04-21T06:56:53.1248109-04:00</DateCreated>
  <DateModified>2026-04-21T06:56:53.1248109-04:00</DateModified>
  <IsActive>true</IsActive>
  <PhoneChannelID>1</PhoneChannelID>
  <PhoneChannelStatusTypeID>5</PhoneChannelStatusTypeID>
  <PhoneID>2</PhoneID>
  <PhoneNumber>sample string 3</PhoneNumber>
  <ShortCodeID>6</ShortCodeID>
  <VIPID>3e44f85a-0b95-4fcb-976a-6bb629a46b62</VIPID>
</PhoneChannel>