Go client for retailCRM API
Find a file
2021-10-26 19:23:00 +03:00
.github/workflows remove useless environment variable 2021-10-26 19:23:00 +03:00
.env.dist Product units 2019-02-20 10:07:02 +03:00
.gitignore refactor library and upgrade version 2021-10-26 19:19:43 +03:00
.golangci.yml refactor library and upgrade version 2021-10-26 19:19:43 +03:00
client.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
client_test.go remove useless environment variable 2021-10-26 19:23:00 +03:00
error.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
error_test.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
filters.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
go.mod refactor library and upgrade version 2021-10-26 19:19:43 +03:00
go.sum refactor library and upgrade version 2021-10-26 19:19:43 +03:00
LICENSE Update product name, cleanup annotations (#43) 2020-12-15 13:33:24 +03:00
log.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
marshaling.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
marshaling_test.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
README.md refactor library and upgrade version 2021-10-26 19:19:43 +03:00
request.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
response.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
types.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00
types_test.go refactor library and upgrade version 2021-10-26 19:19:43 +03:00

Build Status Covarage GitHub release Go Report Card GoLang version pkg.go.dev

RetailCRM API Go client

This is golang RetailCRM API client.

Install

go get -u github.com/retailcrm/api-client-go/v2

Usage

package retailcrm

import (
	"fmt"
	"net/http"

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

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.Error())
	}

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

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

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

	idata, status, err := c.InventoriesUpload(
		[]InventoryUpload{
			{
				XMLID: "pTKIKAeghYzX21HTdzFCe1",
				Stores: []InventoryUploadStore{
					{
						Code: "test-store-v5",
						Available: 10,
						PurchasePrice: 1500,
					},
					{
						Code: "test-store-v4",
						Available: 20,
						PurchasePrice: 1530,
					},
					{
						Code: "test-store",
						Available: 30,
						PurchasePrice: 1510,
					},
				},
			},
			{
				XMLID: "JQIvcrCtiSpOV3AAfMiQB3",
				Stores: []InventoryUploadStore{
					{
						Code: "test-store-v5",
						Available: 45,
						PurchasePrice: 1500,
					},
					{
						Code: "test-store-v4",
						Available: 32,
						PurchasePrice: 1530,
					},
					{
						Code: "test-store",
						Available: 46,
						PurchasePrice: 1510,
					},
				},
			},
		},
	)
	if err != nil {
		fmt.Printf("%v", err.Error())
	}

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

	fmt.Println(idata.processedOffersCount)
}