summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/examples/team/team.go
blob: caaf79f69e8aebd8c4c81c89fcf34e3ef196dba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package main

import (
	"fmt"

	"github.com/nlopes/slack"
)

func main() {
	api := slack.New("YOUR_TOKEN_HERE")
	//Example for single user
	billingActive, err := api.GetBillableInfo("U023BECGF")
	if err != nil {
		fmt.Printf("%s\n", err)
		return
	}
	fmt.Printf("ID: U023BECGF, BillingActive: %v\n\n\n", billingActive["U023BECGF"])

	//Example for team
	billingActiveForTeam, _ := api.GetBillableInfoForTeam()
	for id, value := range billingActiveForTeam {
		fmt.Printf("ID: %v, BillingActive: %v\n", id, value)
	}

}