POST api/UserChatChannels/UserChannelsList?providerCode={providerCode}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
providerCode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of UserChannelModel
NameDescriptionTypeAdditional information
ChannelSid

string

None.

ChannelFriendlyName

string

None.

ChannelUniqueName

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "channelSid": "sample string 1",
    "channelFriendlyName": "sample string 2",
    "channelUniqueName": "sample string 3"
  },
  {
    "channelSid": "sample string 1",
    "channelFriendlyName": "sample string 2",
    "channelUniqueName": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUserChannelModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AuthAPI.Models">
  <UserChannelModel>
    <ChannelFriendlyName>sample string 2</ChannelFriendlyName>
    <ChannelSid>sample string 1</ChannelSid>
    <ChannelUniqueName>sample string 3</ChannelUniqueName>
  </UserChannelModel>
  <UserChannelModel>
    <ChannelFriendlyName>sample string 2</ChannelFriendlyName>
    <ChannelSid>sample string 1</ChannelSid>
    <ChannelUniqueName>sample string 3</ChannelUniqueName>
  </UserChannelModel>
</ArrayOfUserChannelModel>