POST api/ChatAPI/channelmemberstatus

GetMembers

Request Information

Parameters

NameDescriptionAdditional information
staturequest

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "UserName": "sample string 1",
  "ChannelIds": [
    "sample string 1",
    "sample string 2",
    "sample string 3"
  ]
}

text/javascript

Sample:
{"UserName":"sample string 1","ChannelIds":["sample string 1","sample string 2","sample string 3"]}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ChannelMemberStatusRequest'.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "MemberStatus": [
    {
      "ChannelId": "sample string 1",
      "IsChannelMember": true
    },
    {
      "ChannelId": "sample string 1",
      "IsChannelMember": true
    },
    {
      "ChannelId": "sample string 1",
      "IsChannelMember": true
    }
  ]
}

text/javascript

Sample:
{"MemberStatus":[{"ChannelId":"sample string 1","IsChannelMember":true},{"ChannelId":"sample string 1","IsChannelMember":true},{"ChannelId":"sample string 1","IsChannelMember":true}]}