README ¶ retailCRM Message Gateway Bot API Go client Install go get -u -v github.com/retailcrm/mg-bot-api-client-go Usage package main import ( "fmt" "net/http" "github.com/retailcrm/mg-bot-api-client-go/v1" ) func main() { var client = v1.New("https://token.url", "cb8ccf05e38a47543ad8477d49bcba99be73bff503ea6") message := MessageSendRequest{ Scope: "public", Content: "test", ChatID: 12, } data, status, err := c.MessageSend(message) if err != nil { t.Errorf("%d %v", status, err) } fmt.Printf("%v", data.MessageID) } Expand ▾ Collapse ▴ Directories ¶ Show internal Expand all Path Synopsis v1 Click to show internal directories. Click to hide internal directories.