POST api/ChatAPI/channelmemberstatus
GetMembers
Request Information
Parameters
Name | Description | Additional 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:
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}]}