Codebase list golang-github-nlopes-slack / db453bc examples / team / team.go
db453bc

Tree @db453bc (Download .tar.gz)

team.go @db453bcraw · history · blame

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, err := api.GetBillableInfoForTeam()
  for id, value := range billingActiveForTeam {
    fmt.Printf("ID: %v, BillingActive: %v\n", id, value)
  }

}