I am trying to invoke following slack API to fetch private and public channels. https://api.slack.com/methods/conversations.list
By default as per slack documentation 200 channels are returned at a time when limit is given 1000.
I am passing types= “private_channel,public_channel“ to get the private as well as public channels.
- If I pass the types = public_channel with limit 1000 or 9999,
- 162 channels are returned
- If I pass the types= private_channel,public_channel with limit 1000 or 9999,
- 105 channels are returned
Can anybody please answer same.