I am working with slack API to create channels for my team thru its API.
There are some channels on the team that have been created using the web UI and some that I have created using groups.create
method.
When I fetch the list of channels
using conversations.list
method, the groups
/channels
that I created using groups.create
aren't fetched!! Why?
sc = slack_client()
res = sc.api_call("conversations.list", exclude_archived=1, types=['private_channel'])
And how do I fetch the channels created using groups.create
?