1
0
mirror of synced 2024-11-22 04:56:06 +03:00
mg-transport-api-client-go/README.md

64 lines
2.0 KiB
Markdown
Raw Permalink Normal View History

[![Build Status](https://img.shields.io/travis/retailcrm/mg-transport-api-client-go/master.svg?logo=travis&style=flat-square)](https://travis-ci.org/retailcrm/mg-transport-api-client-go)
[![GitHub release](https://img.shields.io/github/release/retailcrm/mg-transport-api-client-go.svg?style=flat-square)](https://github.com/retailcrm/mg-transport-api-client-go/releases)
[![GoLang version](https://img.shields.io/badge/go-1.8%2C%201.9%2C%201.10%2C%201.11-blue.svg?style=flat-square)](https://golang.org/dl/)
[![Godoc reference](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/retailcrm/mg-transport-api-client-go)
2018-04-16 17:37:08 +03:00
# retailCRM Message Gateway Transport API Go client
## Install
```bash
go get -u -v github.com/retailcrm/mg-transport-api-client-go
```
## Usage
```golang
package main
import (
"fmt"
"net/http"
"github.com/retailcrm/mg-transport-api-client-go/v1"
)
func main() {
var client = v1.New("https://token.url", "cb8ccf05e38a47543ad8477d49bcba99be73bff503ea6")
ch := Channel{
Type: "telegram",
2018-09-10 12:06:57 +03:00
Name: "@my_shopping_bot"
2018-08-16 16:53:29 +03:00
Settings: ChannelSettings{
SpamAllowed: false,
2018-08-21 13:37:49 +03:00
Status: Status{
Delivered: ChannelFeatureNone,
Read: ChannelFeatureReceive,
},
Text: ChannelSettingsText{
Creating: ChannelFeatureBoth,
Editing: ChannelFeatureSend,
Quoting: ChannelFeatureReceive,
Deleting: ChannelFeatureBoth,
2018-08-16 16:53:29 +03:00
},
Product: Product{
Creating: ChannelFeatureSend,
2018-09-19 18:14:28 +03:00
Deleting: ChannelFeatureSend,
},
Order: Order{
2018-09-19 18:14:28 +03:00
Creating: ChannelFeatureBoth,
Deleting: ChannelFeatureSend,
},
2018-08-16 16:53:29 +03:00
},
}
data, status, err := c.ActivateTransportChannel(ch)
if err != nil {
t.Errorf("%d %v", status, err)
}
fmt.Printf("%v", data.ChannelID)
}
```