Go client for retailCRM API
Find a file
2018-02-01 00:23:19 +03:00
v5 Implode files into single subpackage, add references methods (lists) 2018-02-01 00:23:19 +03:00
.gitignore remove configuration file for tests and move tests data to env variables, put tests in separate subpackage, split methods and types in separate files 2018-01-23 18:02:42 +03:00
README.md Implode files into single subpackage, add references methods (lists) 2018-02-01 00:23:19 +03:00
retailcrm.go multiversion structure 2018-01-16 17:44:30 +03:00

retailCRM API Go client

Go client for retailCRM API.

Installation

go get -x github.com/retailcrm/api-client-go

Usage

import (
	c "github.com/retailcrm/api-client-go"
)

var client = c.Version5("https://demo.retailcrm.ru", "09jIJ09j0JKhgyfvyuUIKhiugF")

data, status, err := c.Customers(CustomersRequest{
    Filter: CustomersFilter{
        MinCostSumm: 500,
    },
    Page: 2,
})

if err != nil {
    t.Errorf("%s", err)
    t.Fail()
}

if status >= http.StatusBadRequest {
    t.Errorf("%s", err)
    t.Fail()
}

var email = data.Customers[0].Email

Testing

export RETAILCRM_URL="https://demo.retailcrm.ru"
export RETAILCRM_KEY="09jIJ09j0JKhgyfvyuUIKhiugF"
export RETAILCRM_USER="1"

cd $GOPATH/src/github.com/retailcrm/api-client-go

go test -v ./...