Home > database >  Automating Slack Account Creation
Automating Slack Account Creation

Time:10-02

My goal is to be able to create a slack account with the slack SDK/APIs somehow (given all the necessary information for the user). Is this possible?

The only thing I see in the documentation is working with users that have existing accounts, but maybe I can somehow get around this?

CodePudding user response:


You should look into SCIM APIs of slack.

For user creation, you can try
https://api.slack.com/scim#post-users

  • Related