GET api/ChatAPI/channels

GetChannels

Response Information

Response body formats

application/json, text/json

Sample:
{
  "total_records": 1,
  "page_size": 2,
  "next_page_token": "sample string 3",
  "channels": [
    {
      "id": "sample string 1",
      "jid": "sample string 2",
      "name": "sample string 3",
      "type": 4,
      "channel_settings": {
        "new_members_can_see_previous_messages_files": true,
        "allow_to_add_external_users": 2,
        "posting_permissions": 3
      }
    },
    {
      "id": "sample string 1",
      "jid": "sample string 2",
      "name": "sample string 3",
      "type": 4,
      "channel_settings": {
        "new_members_can_see_previous_messages_files": true,
        "allow_to_add_external_users": 2,
        "posting_permissions": 3
      }
    },
    {
      "id": "sample string 1",
      "jid": "sample string 2",
      "name": "sample string 3",
      "type": 4,
      "channel_settings": {
        "new_members_can_see_previous_messages_files": true,
        "allow_to_add_external_users": 2,
        "posting_permissions": 3
      }
    }
  ]
}

text/javascript

Sample:
{"total_records":1,"page_size":2,"next_page_token":"sample string 3","channels":[{"id":"sample string 1","jid":"sample string 2","name":"sample string 3","type":4,"channel_settings":{"new_members_can_see_previous_messages_files":true,"allow_to_add_external_users":2,"posting_permissions":3}},{"id":"sample string 1","jid":"sample string 2","name":"sample string 3","type":4,"channel_settings":{"new_members_can_see_previous_messages_files":true,"allow_to_add_external_users":2,"posting_permissions":3}},{"id":"sample string 1","jid":"sample string 2","name":"sample string 3","type":4,"channel_settings":{"new_members_can_see_previous_messages_files":true,"allow_to_add_external_users":2,"posting_permissions":3}}]}