File: team.go

package info (click to toggle)
golang-github-nlopes-slack 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 488 kB
  • sloc: makefile: 5
file content (25 lines) | stat: -rw-r--r-- 527 bytes parent folder | download | duplicates (3)
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, err := api.GetBillableInfoForTeam()
  for id, value := range billingActiveForTeam {
    fmt.Printf("ID: %v, BillingActive: %v\n", id, value)
  }

}