Go client for retailCRM API
Find a file
2018-02-06 15:27:01 +03:00
v5 References edit methods 2018-02-06 15:27:01 +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 update readme 2018-02-01 01:04:20 +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

package main

import (
	"fmt"
	"net/http"

	"github.com/retailcrm/api-client-go/v5"
)

func main() {
	var client = v5.New("https://demo.retailcrm.pro", "09jIJ09j0JKhgyfvyuUIKhiugF")

	data, status, err := client.Orders(v5.OrdersRequest{
		Filter: v5.OrdersFilter{},
		Limit: 20,
		Page: 1,
	})
	if err != nil {
		fmt.Printf("%v", err)
	}

	if status >= http.StatusBadRequest {
		fmt.Printf("%v", err)
	}

	for _, value := range data.Orders {
		fmt.Printf("%v\n", value.Email)
	}

	fmt.Println(data.Orders[1].FirstName)
}

Testing

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

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

go test -v ./...