Python-slack-sdk: Create Channel

Created on 1 May 2017  路  2Comments  路  Source: slackapi/python-slack-sdk

I'm not seeing any logic in _channels.py to make new channels. Is this possible with the python slackclient?

Most helpful comment

It's possible, but it needs to be done with a user token, rather than a bot token.

https://api.slack.com/methods/channels.create

sc.api_call(
  "chat.create",
  name="newchannel",
  validate=true
)

All 2 comments

It's possible, but it needs to be done with a user token, rather than a bot token.

https://api.slack.com/methods/channels.create

sc.api_call(
  "chat.create",
  name="newchannel",
  validate=true
)

Hi, i want to create slack channel once jira new issue raised by user , and i want to add the user into slack channel who raised the issue from jira

Was this page helpful?
0 / 5 - 0 ratings

Related issues

tinoargentino picture tinoargentino  路  3Comments

juan-vg picture juan-vg  路  5Comments

naveenjafer picture naveenjafer  路  4Comments

kompotkot picture kompotkot  路  4Comments

ErikKalkoken picture ErikKalkoken  路  3Comments