Skip to content

Instantly share code, notes, and snippets.

@nl5887
nl5887 / gist:0f70d642f6c91f33535e
Created March 10, 2015 17:18
Slack invite by email
v := url.Values{}
v.Set("email", "email")
v.Set("channels", "channel")
v.Set("first_name", "firstname")
v.Set("token", "xox-")
v.Set("set_active", "true")
v.Set("_attempts", "1")
url := fmt.Sprintf("https://%s.slack.com/api/users.admin.invite?t=%d", "team", time.Now().Unix())