1
0
mirror of synced 2024-11-21 20:46:05 +03:00
Go client for MG transport API
Go to file
Alex Lushpai d304240257
Merge pull request #35 from DmitryZagorulko/feature-files
improve FullFileResponse struct
2018-11-15 15:30:22 +03:00
v1 improve FullFileResponse struct 2018-11-15 14:11:11 +03:00
.gitignore Init (#1) 2018-05-17 17:26:18 +03:00
.travis.yml add email to user struct & update TravisCI config 2018-08-31 11:14:06 +03:00
LICENSE Init (#1) 2018-05-17 17:26:18 +03:00
README.md fix README formatting 2018-09-19 18:14:28 +03:00

Build Status GitHub release GoLang version Godoc reference

retailCRM Message Gateway Transport API Go client

Install

go get -u -v github.com/retailcrm/mg-transport-api-client-go

Usage

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",
        Name: "@my_shopping_bot"
        Settings: ChannelSettings{
            SpamAllowed: false,
            Status: Status{
                Delivered: ChannelFeatureNone,
                Read: ChannelFeatureReceive,
            },
            Text: ChannelSettingsText{
                Creating: ChannelFeatureBoth,
                Editing:  ChannelFeatureSend,
                Quoting:  ChannelFeatureReceive,
                Deleting: ChannelFeatureBoth,
            },
            Product: Product{
                Creating: ChannelFeatureSend,
                Deleting: ChannelFeatureSend,
            },
            Order: Order{
                Creating: ChannelFeatureBoth,
                Deleting: ChannelFeatureSend,
            },
        },
    }

    data, status, err := c.ActivateTransportChannel(ch)

    if err != nil {
        t.Errorf("%d %v", status, err)
    }

    fmt.Printf("%v", data.ChannelID)
}