api-client-go/v5/client.go

4109 lines
96 KiB
Go
Raw Normal View History

2018-02-27 11:37:15 +03:00
package v5
import (
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"strconv"
"strings"
"time"
"github.com/google/go-querystring/query"
"github.com/retailcrm/api-client-go/errs"
2018-02-27 11:37:15 +03:00
)
// New initalize client
func New(url string, key string) *Client {
return &Client{
url,
key,
&http.Client{Timeout: 20 * time.Second},
}
}
// GetRequest implements GET Request
func (c *Client) GetRequest(urlWithParameters string, versioned ...bool) ([]byte, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var res []byte
var cerr errs.Failure
var prefix = "/api/v5"
if len(versioned) > 0 {
s := versioned[0]
if s == false {
prefix = "/api"
}
}
2018-02-27 11:37:15 +03:00
req, err := http.NewRequest("GET", fmt.Sprintf("%s%s%s", c.URL, prefix, urlWithParameters), nil)
2018-02-27 11:37:15 +03:00
if err != nil {
cerr.RuntimeErr = err
return res, 0, cerr
2018-02-27 11:37:15 +03:00
}
req.Header.Set("X-API-KEY", c.Key)
resp, err := c.httpClient.Do(req)
if err != nil {
cerr.RuntimeErr = err
return res, 0, cerr
2018-02-27 11:37:15 +03:00
}
if resp.StatusCode >= http.StatusInternalServerError {
cerr.ApiErr = fmt.Sprintf("HTTP request error. Status code: %d.\n", resp.StatusCode)
return res, resp.StatusCode, cerr
2018-02-27 11:37:15 +03:00
}
res, err = buildRawResponse(resp)
if err != nil {
cerr.RuntimeErr = err
2018-02-27 11:37:15 +03:00
}
return res, resp.StatusCode, cerr
2018-02-27 11:37:15 +03:00
}
// PostRequest implements POST Request
func (c *Client) PostRequest(url string, postParams url.Values) ([]byte, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var res []byte
var cerr errs.Failure
var prefix = "/api/v5"
2018-02-27 11:37:15 +03:00
req, err := http.NewRequest("POST", fmt.Sprintf("%s%s%s", c.URL, prefix, url), strings.NewReader(postParams.Encode()))
2018-02-27 11:37:15 +03:00
if err != nil {
cerr.RuntimeErr = err
return res, 0, cerr
2018-02-27 11:37:15 +03:00
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
req.Header.Set("X-API-KEY", c.Key)
resp, err := c.httpClient.Do(req)
if err != nil {
cerr.RuntimeErr = err
return res, 0, cerr
2018-02-27 11:37:15 +03:00
}
if resp.StatusCode >= http.StatusInternalServerError {
cerr.ApiErr = fmt.Sprintf("HTTP request error. Status code: %d.\n", resp.StatusCode)
return res, resp.StatusCode, cerr
2018-02-27 11:37:15 +03:00
}
res, err = buildRawResponse(resp)
if err != nil {
cerr.RuntimeErr = err
return res, 0, cerr
2018-02-27 11:37:15 +03:00
}
return res, resp.StatusCode, cerr
2018-02-27 11:37:15 +03:00
}
func buildRawResponse(resp *http.Response) ([]byte, error) {
defer resp.Body.Close()
res, err := ioutil.ReadAll(resp.Body)
if err != nil {
return res, err
}
return res, nil
}
func buildErr(data []byte) errs.Failure {
var err = errs.Failure{}
eresp, errr := errs.ErrorResponse(data)
err.RuntimeErr = errr
err.ApiErr = eresp.ErrorMsg
if eresp.Errors != nil {
err.ApiErrs = eresp.Errors
}
return err
}
2018-02-27 11:37:15 +03:00
// checkBy select identifier type
func checkBy(by string) string {
var context = "id"
if by != "id" {
context = "externalId"
}
return context
}
// fillSite add site code to parameters if present
func fillSite(p *url.Values, site []string) {
if len(site) > 0 {
s := site[0]
if s != "" {
p.Add("site", s)
}
}
}
// APIVersions get all available API versions for exact account
2018-02-27 11:37:15 +03:00
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-api-versions
//
2018-02-27 11:37:15 +03:00
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.APIVersions()
2018-02-27 11:37:15 +03:00
//
// if err.RuntimeErr != nil {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
2018-02-27 11:37:15 +03:00
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
2018-02-27 11:37:15 +03:00
// }
//
// for _, value := range data.versions {
// fmt.Printf("%v\n", value)
// }
func (c *Client) APIVersions() (VersionResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp VersionResponse
data, status, err := c.GetRequest("/api-versions", false)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
// APICredentials get all available API methods for exact account
2018-02-27 15:22:52 +03:00
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-api-versions
//
2018-02-27 15:22:52 +03:00
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.APICredentials()
2018-02-27 15:22:52 +03:00
//
// if err.RuntimeErr != nil {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
2018-02-27 15:22:52 +03:00
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
2018-02-27 15:22:52 +03:00
// }
//
// for _, value := range data.credentials {
// fmt.Printf("%v\n", value)
// }
func (c *Client) APICredentials() (CredentialResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CredentialResponse
data, status, err := c.GetRequest("/credentials", false)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of customers matched the specified filter
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-customers
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Customers(v5.CustomersRequest{
// Filter: CustomersFilter{
// City: "Moscow",
// },
// Page: 3,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Customers {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Customers(parameters CustomersRequest) (CustomersResponse, int, errs.Failure) {
var resp CustomersResponse
params, _ := query.Values(parameters)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/customers?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Combining of customers
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-combine
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomersCombine([]v5.Customer{{ID: 1}, {ID: 2}}, Customer{ID: 3})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) CustomersCombine(customers []Customer, resultCustomer Customer) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
combineJSONIn, _ := json.Marshal(&customers)
combineJSONOut, _ := json.Marshal(&resultCustomer)
2018-02-27 11:37:15 +03:00
p := url.Values{
"customers": {string(combineJSONIn[:])},
"resultCustomer": {string(combineJSONOut[:])},
}
data, status, err := c.PostRequest("/customers/combine", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Customer creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomersCombine(v5.Customer{
// FirstName: "Ivan",
// LastName: "Ivanov",
// Patronymic: "Ivanovich",
// ExternalID: 1,
// Email: "ivanov@example.com",
// Address: &v5.Address{
// City: "Moscow",
// Street: "Kutuzovsky",
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v", err.Id)
// }
func (c *Client) CustomerCreate(customer Customer, site ...string) (CustomerChangeResponse, int, errs.Failure) {
var resp CustomerChangeResponse
2018-02-27 11:37:15 +03:00
customerJSON, _ := json.Marshal(&customer)
p := url.Values{
"customer": {string(customerJSON[:])},
}
fillSite(&p, site)
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest("/customers/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// The mass recording of customers external ID
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-fix-external-ids
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomersFixExternalIds([]v5.IdentifiersPair{{
// ID: 1,
// ExternalID: 12,
// }})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) CustomersFixExternalIds(customers []IdentifiersPair) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
customersJSON, _ := json.Marshal(&customers)
2018-02-27 11:37:15 +03:00
p := url.Values{
"customers": {string(customersJSON[:])},
}
data, status, err := c.PostRequest("/customers/fix-external-ids", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the customer change history
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-customers-history
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomersHistory(v5.CustomersHistoryRequest{
// Filter: v5.CustomersHistoryFilter{
// SinceID: 20,
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.History {
// fmt.Printf("%v\n", value)
// }
func (c *Client) CustomersHistory(parameters CustomersHistoryRequest) (CustomersHistoryResponse, int, errs.Failure) {
var resp CustomersHistoryResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/customers/history?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Getting the notes
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-customers-notes
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomerNotes(v5.NotesRequest{
// Filter: v5.NotesFilter{
// CustomerIds: []int{1,2,3}
// },
// Page: 1,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Notes {
// fmt.Printf("%v\n", value)
// }
func (c *Client) CustomerNotes(parameters NotesRequest) (NotesResponse, int, errs.Failure) {
var resp NotesResponse
params, _ := query.Values(parameters)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/customers/notes?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Note creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-notes-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomerNoteCreate(v5.Note{
// Text: "some text",
// ManagerID: 12,
// Customer: &v5.Customer{
// ID: 1,
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) CustomerNoteCreate(note Note, site ...string) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
2018-02-27 11:37:15 +03:00
noteJSON, _ := json.Marshal(&note)
2018-02-27 11:37:15 +03:00
p := url.Values{
"note": {string(noteJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest("/customers/notes/create", p)
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Note removing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-notes-id-delete
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomerNoteDelete(12)
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) CustomerNoteDelete(id int) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
p := url.Values{
"id": {string(id)},
}
data, status, err := c.PostRequest(fmt.Sprintf("/customers/notes/%d/delete", id), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Packet customers uploading
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-upload
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomersUpload([]v5.Customer{
// {
// FirstName: "Ivan",
// LastName: "Ivanov",
// Patronymic: "Ivanovich",
// ExternalID: 1,
// Email: "ivanov@example.com",
// },
// {
// FirstName: "Petr",
// LastName: "Petrov",
// Patronymic: "Petrovich",
// ExternalID: 2,
// Email: "petrov@example.com",
// },
// }}
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.UploadedCustomers)
// }
func (c *Client) CustomersUpload(customers []Customer, site ...string) (CustomersUploadResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CustomersUploadResponse
uploadJSON, _ := json.Marshal(&customers)
2018-02-27 11:37:15 +03:00
p := url.Values{
"customers": {string(uploadJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest("/customers/upload", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting information on customer
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-customers-externalId
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Customer(12, "externalId", "")
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.Customer)
// }
func (c *Client) Customer(id, by, site string) (CustomerResponse, int, errs.Failure) {
var resp CustomerResponse
var context = checkBy(by)
2018-02-27 11:37:15 +03:00
fw := CustomerRequest{context, site}
params, _ := query.Values(fw)
data, status, err := c.GetRequest(fmt.Sprintf("/customers/%s?%s", id, params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Customer editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-customers-externalId-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomerEdit(
// v5.Customer{
// FirstName: "Ivan",
// LastName: "Ivanov",
// Patronymic: "Ivanovich",
// ID: 1,
// Email: "ivanov@example.com",
// },
// "id",
// )
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.Customer)
// }
func (c *Client) CustomerEdit(customer Customer, by string, site ...string) (CustomerChangeResponse, int, errs.Failure) {
var resp CustomerChangeResponse
var uid = strconv.Itoa(customer.ID)
var context = checkBy(by)
if context == "externalId" {
uid = customer.ExternalID
}
customerJSON, _ := json.Marshal(&customer)
2018-02-27 11:37:15 +03:00
p := url.Values{
"by": {string(context)},
"customer": {string(customerJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest(fmt.Sprintf("/customers/%s/edit", uid), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Updating of delivery statuses
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-delivery-generic-subcode-tracking
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryTracking(
// v5.DeliveryTrackingRequest{
// DeliveryID: "1",
// TrackNumber "123",
// History: []DeliveryHistoryRecord{
// {
// Code: "cancel",
// UpdatedAt: "2012-12-12 12:12:12"
// },
// }
// },
// "delivery-1",
// )
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
func (c *Client) DeliveryTracking(parameters DeliveryTrackingRequest, subcode string) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
updateJSON, _ := json.Marshal(&parameters)
2018-02-27 11:37:15 +03:00
p := url.Values{
"statusUpdate": {string(updateJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/delivery/generic/%s/tracking", subcode), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of shipments to delivery services
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-delivery-shipments
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryShipments(v5.DeliveryShipmentsRequest{
// Limit: 12,
// Filter: v5.ShipmentFilter{
// DateFrom: "2012-12-12",
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.DeliveryShipments {
// fmt.Printf("%v\n", value)
// }
func (c *Client) DeliveryShipments(parameters DeliveryShipmentsRequest) (DeliveryShipmentsResponse, int, errs.Failure) {
var resp DeliveryShipmentsResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/delivery/shipments?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Shipment creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-delivery-shipments-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryShipmentCreate(
// v5.DeliveryShipment{
// Date: "2012-12-12",
// Time: v5.DeliveryTime{
// From: "18:00",
// To: "20:00",
// },
// Orders: []v5.Order{{Number: "12"}},
// },
// "sdek",
// )
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) DeliveryShipmentCreate(shipment DeliveryShipment, deliveryType string, site ...string) (DeliveryShipmentUpdateResponse, int, errs.Failure) {
var resp DeliveryShipmentUpdateResponse
updateJSON, _ := json.Marshal(&shipment)
2018-02-27 11:37:15 +03:00
p := url.Values{
"deliveryType": {string(deliveryType)},
"deliveryShipment": {string(updateJSON[:])},
}
fillSite(&p, site)
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest("/delivery/shipments/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting information on shipment
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-delivery-shipments-id
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryShipment(12)
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.DeliveryShipment)
// }
func (c *Client) DeliveryShipment(id int) (DeliveryShipmentResponse, int, errs.Failure) {
var resp DeliveryShipmentResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/delivery/shipments/%d", id))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Shipment editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-delivery-shipments-id-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryShipmentEdit(v5.DeliveryShipment{
// ID: "12",
// Time: v5.DeliveryTime{
// From: "14:00",
// To: "18:00",
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) DeliveryShipmentEdit(shipment DeliveryShipment, site ...string) (DeliveryShipmentUpdateResponse, int, errs.Failure) {
var resp DeliveryShipmentUpdateResponse
updateJSON, _ := json.Marshal(&shipment)
2018-02-27 11:37:15 +03:00
p := url.Values{
"deliveryShipment": {string(updateJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest(fmt.Sprintf("/delivery/shipments/%s/edit", strconv.Itoa(shipment.ID)), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the integration module
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-integration-modules-code
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.IntegrationModule("moysklad3")
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.IntegrationModule)
// }
func (c *Client) IntegrationModule(code string) (IntegrationModuleResponse, int, errs.Failure) {
var resp IntegrationModuleResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/integration-modules/%s", code))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
2018-02-27 11:37:15 +03:00
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
}
2018-02-27 11:37:15 +03:00
2018-04-12 16:43:53 +03:00
// Integration module creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-integration-modules-code
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
// name := "MS"
// code := "moysklad3"
// data, status, err := client.IntegrationModuleEdit(v5.IntegrationModule{
// Code: code,
// IntegrationCode: code,
// Active: false,
// Name: fmt.Sprintf("Integration module %s", name),
// AccountURL: fmt.Sprintf("http://example.com/%s/account", name),
// BaseURL: fmt.Sprintf("http://example.com/%s", name),
// ClientID: "123",
// Logo: "https://cdn.worldvectorlogo.com/logos/github-icon.svg",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.Info)
// }
func (c *Client) IntegrationModuleEdit(integrationModule IntegrationModule) (IntegrationModuleEditResponse, int, errs.Failure) {
var resp IntegrationModuleEditResponse
updateJSON, _ := json.Marshal(&integrationModule)
p := url.Values{"integrationModule": {string(updateJSON[:])}}
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/integration-modules/%s/edit", integrationModule.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of orders matched the specified filter
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-orders
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Orders(v5.OrdersRequest{Filter: v5.OrdersFilter{City: "Moscow"}, Page: 1})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Orders {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Orders(parameters OrdersRequest) (OrdersResponse, int, errs.Failure) {
var resp OrdersResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/orders?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Combining of orders
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-combine
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrdersCombine("ours", v5.Order{ID: 1}, v5.Order{ID: 1})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) OrdersCombine(technique string, order, resultOrder Order) (OperationResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp OperationResponse
combineJSONIn, _ := json.Marshal(&order)
combineJSONOut, _ := json.Marshal(&resultOrder)
2018-02-27 11:37:15 +03:00
p := url.Values{
"technique": {technique},
"order": {string(combineJSONIn[:])},
"resultOrder": {string(combineJSONOut[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest("/orders/combine", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Order creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderCreate(v5.Order{
// FirstName: "Ivan",
// LastName: "Ivanov",
// Patronymic: "Ivanovich",
// Email: "ivanov@example.com",
// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 12}, Quantity: 5}},
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) OrderCreate(order Order, site ...string) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
orderJSON, _ := json.Marshal(&order)
2018-02-27 11:37:15 +03:00
p := url.Values{
"order": {string(orderJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest("/orders/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// The mass recording of orders external ID
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-fix-external-ids
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrdersFixExternalIds(([]v5.IdentifiersPair{{
//// ID: 1,
//// ExternalID: 12,
//// }})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) OrdersFixExternalIds(orders []IdentifiersPair) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
ordersJSON, _ := json.Marshal(&orders)
2018-02-27 11:37:15 +03:00
p := url.Values{
"orders": {string(ordersJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest("/orders/fix-external-ids", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the order change history
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-orders-history
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrdersHistory(v5.OrdersHistoryRequest{Filter: v5.OrdersHistoryFilter{SinceID: 20}})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.History {
// fmt.Printf("%v\n", value)
// }
func (c *Client) OrdersHistory(parameters OrdersHistoryRequest) (CustomersHistoryResponse, int, errs.Failure) {
var resp CustomersHistoryResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/orders/history?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Payment creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-payments-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderPaymentCreate(v5.Payment{
// Order: &v5.Order{
// ID: 12,
// },
// Amount: 300,
// Type: "cash",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) OrderPaymentCreate(payment Payment, site ...string) (CreateResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CreateResponse
paymentJSON, _ := json.Marshal(&payment)
2018-02-27 11:37:15 +03:00
p := url.Values{
"payment": {string(paymentJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest("/orders/payments/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Payment removing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-payments-id-delete
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderPaymentDelete(12)
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) OrderPaymentDelete(id int) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
p := url.Values{
"id": {string(id)},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/orders/payments/%d/delete", id), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Payment editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-payments-id-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderPaymentEdit(
// v5.Payment{
// ID: 12,
// Amount: 500,
// },
// "id",
// )
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) OrderPaymentEdit(payment Payment, by string, site ...string) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
var uid = strconv.Itoa(payment.ID)
var context = checkBy(by)
2018-02-27 11:37:15 +03:00
if context == "externalId" {
uid = payment.ExternalID
2018-02-27 11:37:15 +03:00
}
paymentJSON, _ := json.Marshal(&payment)
2018-02-27 11:37:15 +03:00
p := url.Values{
"payment": {string(paymentJSON[:])},
}
2018-02-27 11:37:15 +03:00
fillSite(&p, site)
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/orders/payments/%s/edit", uid), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Packet orders uploading
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-upload
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrdersUpload([]v5.Order{
// {
// FirstName: "Ivan",
// LastName: "Ivanov",
// Patronymic: "Ivanovich",
// Email: "ivanov@example.com",
// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 12}, Quantity: 5}},
// },
// {
// FirstName: "Pert",
// LastName: "Petrov",
// Patronymic: "Petrovich",
// Email: "petrov@example.com",
// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 13}, Quantity: 1}},
// }
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.UploadedOrders)
// }
func (c *Client) OrdersUpload(orders []Order, site ...string) (OrdersUploadResponse, int, errs.Failure) {
var resp OrdersUploadResponse
2018-02-27 11:37:15 +03:00
uploadJSON, _ := json.Marshal(&orders)
2018-02-27 11:37:15 +03:00
p := url.Values{
"orders": {string(uploadJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest("/orders/upload", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting information on order
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-orders-externalId
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Order(12, "externalId", "")
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.Order)
// }
func (c *Client) Order(id, by, site string) (OrderResponse, int, errs.Failure) {
var resp OrderResponse
var context = checkBy(by)
2018-02-27 11:37:15 +03:00
fw := OrderRequest{context, site}
params, _ := query.Values(fw)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/orders/%s?%s", id, params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Order editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-externalId-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderEdit(
// v5.Order{
// ID: 12,
// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 13}, Quantity: 6}},
// },
// "id",
// )
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) OrderEdit(order Order, by string, site ...string) (CreateResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CreateResponse
var uid = strconv.Itoa(order.ID)
var context = checkBy(by)
2018-02-27 11:37:15 +03:00
if context == "externalId" {
uid = order.ExternalID
2018-02-27 11:37:15 +03:00
}
orderJSON, _ := json.Marshal(&order)
2018-02-27 11:37:15 +03:00
p := url.Values{
"by": {string(context)},
"order": {string(orderJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest(fmt.Sprintf("/orders/%s/edit", uid), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of packs matched the specified filter
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-orders-packs
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Packs(v5.PacksRequest{Filter: v5.PacksFilter{OrderID: 12}})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Packs {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Packs(parameters PacksRequest) (PacksResponse, int, errs.Failure) {
var resp PacksResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/orders/packs?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Pack creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-packs-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.PackCreate(Pack{
// Store: "store-1",
// ItemID: 12,
// Quantity: 1,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) PackCreate(pack Pack) (CreateResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CreateResponse
packJSON, _ := json.Marshal(&pack)
2018-02-27 11:37:15 +03:00
p := url.Values{
"pack": {string(packJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest("/orders/packs/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the history of order packing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-orders-packs-history
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.PacksHistory(v5.PacksHistoryRequest{Filter: v5.OrdersHistoryFilter{SinceID: 5}})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.History {
// fmt.Printf("%v\n", value)
// }
func (c *Client) PacksHistory(parameters PacksHistoryRequest) (PacksHistoryResponse, int, errs.Failure) {
var resp PacksHistoryResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/orders/packs/history?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-orders-packs-id
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Pack(112)
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.Pack)
// }
func (c *Client) Pack(id int) (PackResponse, int, errs.Failure) {
var resp PackResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/orders/packs/%d", id))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Pack removing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-packs-id-delete
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.PackDelete(112)
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) PackDelete(id int) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/orders/packs/%d/delete", id), url.Values{})
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Pack editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-orders-packs-id-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.PackEdit(Pack{ID: 12, Quantity: 2})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) PackEdit(pack Pack) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
2018-02-27 11:37:15 +03:00
packJSON, _ := json.Marshal(&pack)
2018-02-27 11:37:15 +03:00
p := url.Values{
"pack": {string(packJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/orders/packs/%d/edit", pack.ID), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of available country codes
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-countries
func (c *Client) Countries() (CountriesResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CountriesResponse
data, status, err := c.GetRequest("/reference/countries")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting of the costs groups list
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-cost-groups
func (c *Client) CostGroups() (CostGroupsResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp CostGroupsResponse
data, status, err := c.GetRequest("/reference/cost-groups")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Editing costs groups
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-cost-groups-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostGroupEdit(v5.CostGroup{
// Code: "group-1",
// Color: "#da5c98",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) CostGroupEdit(costGroup CostGroup) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&costGroup)
p := url.Values{
"costGroup": {string(objJSON[:])},
}
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/reference/cost-groups/%s/edit", costGroup.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting of the costs items list
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-cost-items
func (c *Client) CostItems() (CostItemsResponse, int, errs.Failure) {
var resp CostItemsResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/cost-items")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Editing costs items
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-cost-items-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostItemEdit(v5.CostItem{
// Code: "seo",
// Active: false,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) CostItemEdit(costItem CostItem) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&costItem)
p := url.Values{
"costItem": {string(objJSON[:])},
}
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/reference/cost-items/%s/edit", costItem.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of couriers
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-couriers
func (c *Client) Couriers() (CouriersResponse, int, errs.Failure) {
var resp CouriersResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/couriers")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Courier creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-couriers
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostItemEdit(v5.Courier{
// Active: true,
// Email: "courier1@example.com",
// FirstName: "Ivan",
// LastName: "Ivanov",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v", data.ID)
// }
func (c *Client) CourierCreate(courier Courier) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
objJSON, _ := json.Marshal(&courier)
p := url.Values{
"courier": {string(objJSON[:])},
}
2018-02-27 11:37:15 +03:00
data, status, err := c.PostRequest("/reference/couriers/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Courier editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-couriers-id-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostItemEdit(v5.Courier{
// ID: 1,
// Patronymic: "Ivanovich",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) CourierEdit(courier Courier) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&courier)
2018-02-27 11:37:15 +03:00
p := url.Values{
"courier": {string(objJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/couriers/%d/edit", courier.ID), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of delivery services
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-delivery-services
func (c *Client) DeliveryServices() (DeliveryServiceResponse, int, errs.Failure) {
var resp DeliveryServiceResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/delivery-services")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Delivery service creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-delivery-services-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryServiceEdit(v5.DeliveryService{
// Active: false,
// Code: "delivery-1",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) DeliveryServiceEdit(deliveryService DeliveryService) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&deliveryService)
2018-02-27 11:37:15 +03:00
p := url.Values{
"deliveryService": {string(objJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/delivery-services/%s/edit", deliveryService.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of delivery types
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-delivery-types
func (c *Client) DeliveryTypes() (DeliveryTypesResponse, int, errs.Failure) {
var resp DeliveryTypesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/delivery-types")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Delivery type creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-delivery-types-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.DeliveryTypeEdit(v5.DeliveryType{
// Active: false,
// Code: "type-1",
// DefaultCost: 300,
// DefaultForCrm: false,
// }
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) DeliveryTypeEdit(deliveryType DeliveryType) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&deliveryType)
2018-02-27 11:37:15 +03:00
p := url.Values{
"deliveryType": {string(objJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/delivery-types/%s/edit", deliveryType.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of legal entities
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-legal-entities
func (c *Client) LegalEntities() (LegalEntitiesResponse, int, errs.Failure) {
var resp LegalEntitiesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/legal-entities")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Editing of information on legal entity
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-legal-entities-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.LegalEntityEdit(v5.LegalEntity{
// Code: "legal-entity-1",
// CertificateDate: "2012-12-12",
// }
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) LegalEntityEdit(legalEntity LegalEntity) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&legalEntity)
2018-02-27 11:37:15 +03:00
p := url.Values{
"legalEntity": {string(objJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/legal-entities/%s/edit", legalEntity.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of order methods
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-order-methods
func (c *Client) OrderMethods() (OrderMethodsResponse, int, errs.Failure) {
var resp OrderMethodsResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/order-methods")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Order method creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-order-methods-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderMethodEdit(v5.OrderMethod{
// Code: "method-1",
// Active: false,
// DefaultForCRM: false,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) OrderMethodEdit(orderMethod OrderMethod) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
objJSON, _ := json.Marshal(&orderMethod)
2018-02-27 11:37:15 +03:00
p := url.Values{
"orderMethod": {string(objJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/order-methods/%s/edit", orderMethod.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of order types
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-order-types
func (c *Client) OrderTypes() (OrderTypesResponse, int, errs.Failure) {
var resp OrderTypesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/order-types")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-order-methods-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.OrderTypeEdit(v5.OrderType{
// Code: "order-type-1",
// Active: false,
// DefaultForCRM: false,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) OrderTypeEdit(orderType OrderType) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&orderType)
2018-02-27 11:37:15 +03:00
p := url.Values{
"orderType": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/order-types/%s/edit", orderType.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of payment statuses
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-payment-statuses
func (c *Client) PaymentStatuses() (PaymentStatusesResponse, int, errs.Failure) {
var resp PaymentStatusesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/payment-statuses")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Payment status creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-payment-statuses-code-edit
func (c *Client) PaymentStatusEdit(paymentStatus PaymentStatus) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&paymentStatus)
2018-02-27 11:37:15 +03:00
p := url.Values{
"paymentStatus": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/payment-statuses/%s/edit", paymentStatus.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of payment types
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-payment-types
func (c *Client) PaymentTypes() (PaymentTypesResponse, int, errs.Failure) {
var resp PaymentTypesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/payment-types")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Payment type creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-payment-types-code-edit
func (c *Client) PaymentTypeEdit(paymentType PaymentType) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&paymentType)
2018-02-27 11:37:15 +03:00
p := url.Values{
"paymentType": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/payment-types/%s/edit", paymentType.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of price types
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-price-types
func (c *Client) PriceTypes() (PriceTypesResponse, int, errs.Failure) {
var resp PriceTypesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/price-types")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Price type creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-price-types-code-edit
func (c *Client) PriceTypeEdit(priceType PriceType) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&priceType)
2018-02-27 11:37:15 +03:00
p := url.Values{
"priceType": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/price-types/%s/edit", priceType.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of item statuses in order
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-product-statuses
func (c *Client) ProductStatuses() (ProductStatusesResponse, int, errs.Failure) {
var resp ProductStatusesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/product-statuses")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Item status creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-product-statuses-code-edit
func (c *Client) ProductStatusEdit(productStatus ProductStatus) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&productStatus)
2018-02-27 11:37:15 +03:00
p := url.Values{
"productStatus": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/product-statuses/%s/edit", productStatus.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the stores list
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-sites
func (c *Client) Sites() (SitesResponse, int, errs.Failure) {
var resp SitesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/sites")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Store creation/editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-sites-code-edit
func (c *Client) SiteEdit(site Site) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&site)
2018-02-27 11:37:15 +03:00
p := url.Values{
"site": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/sites/%s/edit", site.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of order status groups
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-status-groups
func (c *Client) StatusGroups() (StatusGroupsResponse, int, errs.Failure) {
var resp StatusGroupsResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/status-groups")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of order statuses
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-statuses
func (c *Client) Statuses() (StatusesResponse, int, errs.Failure) {
var resp StatusesResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/statuses")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Order status creation/editing
//
// For more information see www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-sites-code-edit
func (c *Client) StatusEdit(st Status) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&st)
2018-02-27 11:37:15 +03:00
p := url.Values{
"status": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/statuses/%s/edit", st.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of warehouses
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-reference-stores
func (c *Client) Stores() (StoresResponse, int, errs.Failure) {
var resp StoresResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/reference/stores")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Editing of information on warehouse
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-reference-stores-code-edit
func (c *Client) StoreEdit(store Store) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
objJSON, _ := json.Marshal(&store)
2018-02-27 11:37:15 +03:00
p := url.Values{
"store": {string(objJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest(fmt.Sprintf("/reference/stores/%s/edit", store.Code), p)
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Get segments
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-segments
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Segments(SegmentsRequest{
// Filter: v5.SegmentsFilter{
// Ids: []int{1,2,3}
// }
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Segments {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Segments(parameters SegmentsRequest) (SegmentsResponse, int, errs.Failure) {
var resp SegmentsResponse
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/segments?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the leftover stocks and purchasing prices
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-store-inventories
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Inventories(v5.InventoriesRequest{Filter: v5.InventoriesFilter{Details: 1, ProductActive: 1}, Page: 1})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Offers {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Inventories(parameters InventoriesRequest) (InventoriesResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp InventoriesResponse
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/store/inventories?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Updating the leftover stocks and purchasing prices
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-store-inventories-upload
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := clientc.InventoriesUpload(
// []v5.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.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// fmt.Printf("%v\n", data.NotFoundOffers)
func (c *Client) InventoriesUpload(inventories []InventoryUpload, site ...string) (StoreUploadResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp StoreUploadResponse
uploadJSON, _ := json.Marshal(&inventories)
2018-02-27 11:37:15 +03:00
p := url.Values{
"offers": {string(uploadJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest("/store/inventories/upload", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Offers prices updating
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-store-prices-upload
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.PricesUpload([]v5.OfferPriceUpload{
// {
// ID 1
// Site "store-1"
// Prices []PriceUpload{{Code: "price-1"}}
// },
// {
// ID 2
// Site "store-1"
// Prices []PriceUpload{{Code: "price-2"}}
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// fmt.Printf("%v\n", data.NotFoundOffers)
func (c *Client) PricesUpload(prices []OfferPriceUpload) (StoreUploadResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp StoreUploadResponse
uploadJSON, _ := json.Marshal(&prices)
2018-02-27 11:37:15 +03:00
p := url.Values{
"prices": {string(uploadJSON[:])},
2018-02-27 11:37:15 +03:00
}
data, status, err := c.PostRequest("/store/prices/upload", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of product groups
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-store-product-groups
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.ProductsGroup(v5.ProductsGroupsRequest{
// Filter: v5.ProductsGroupsFilter{
// Active: 1,
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.ProductGroup {
// fmt.Printf("%v\n", value)
// }
func (c *Client) ProductsGroup(parameters ProductsGroupsRequest) (ProductsGroupsResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp ProductsGroupsResponse
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/store/product-groups?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of products and SKU
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-store-products
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Products(v5.ProductsRequest{
// Filter: v5.ProductsFilter{
// Active: 1,
// MinPrice: 1000,
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Products {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Products(parameters ProductsRequest) (ProductsResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp ProductsResponse
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/store/products?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of item properties, matching the specified filter
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-store-products-properties
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.ProductsProperties(v5.ProductsPropertiesRequest{
// Filter: v5.ProductsPropertiesFilter{
// Sites: []string["store"],
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Properties {
// fmt.Printf("%v\n", value)
// }
func (c *Client) ProductsProperties(parameters ProductsPropertiesRequest) (ProductsPropertiesResponse, int, errs.Failure) {
2018-02-27 11:37:15 +03:00
var resp ProductsPropertiesResponse
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/store/products/properties?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the task list
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-tasks
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Tasks(v5.TasksRequest{
// Filter: TasksFilter{
// DateFrom: "2012-12-12",
// },
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Tasks {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Tasks(parameters TasksRequest) (TasksResponse, int, errs.Failure) {
var resp TasksResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/tasks?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Task creation
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-tasks-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Tasks(v5.Task{
// Text: "task №1",
// PerformerID: 12,
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.ID)
// }
func (c *Client) TaskCreate(task Task, site ...string) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
taskJSON, _ := json.Marshal(&task)
2018-02-27 11:37:15 +03:00
p := url.Values{
"task": {string(taskJSON[:])},
}
2018-02-27 11:37:15 +03:00
fillSite(&p, site)
data, status, err := c.PostRequest("/tasks/create", p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting information on task
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-tasks-id
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Task(12)
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.Task)
// }
func (c *Client) Task(id int) (TaskResponse, int, errs.Failure) {
var resp TaskResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/tasks/%d", id))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Task editing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-tasks-id-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Task(v5.Task{
// ID: 12
// Text: "task №2",
// })
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) TaskEdit(task Task, site ...string) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
var uid = strconv.Itoa(task.ID)
taskJSON, _ := json.Marshal(&task)
2018-02-27 11:37:15 +03:00
p := url.Values{
"task": {string(taskJSON[:])},
2018-02-27 11:37:15 +03:00
}
fillSite(&p, site)
data, status, err := c.PostRequest(fmt.Sprintf("/tasks/%s/edit", uid), p)
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting the list of user groups
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-user-groups
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.UserGroups(v5.UserGroupsRequest{Page: 1})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Groups {
// fmt.Printf("%v\n", value)
// }
func (c *Client) UserGroups(parameters UserGroupsRequest) (UserGroupsResponse, int, errs.Failure) {
var resp UserGroupsResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/user-groups?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Getting the list of users matched the specified filter
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-users
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Users(v5.UsersRequest{Filter: v5.UsersFilter{Active: 1}, Page: 1})
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Users {
// fmt.Printf("%v\n", value)
// }
func (c *Client) Users(parameters UsersRequest) (UsersResponse, int, errs.Failure) {
var resp UsersResponse
2018-02-27 11:37:15 +03:00
params, _ := query.Values(parameters)
data, status, err := c.GetRequest(fmt.Sprintf("/users?%s", params.Encode()))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Getting information on user
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-users-id
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.User(12)
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if data.Success == true {
// fmt.Printf("%v\n", data.User)
// }
func (c *Client) User(id int) (UserResponse, int, errs.Failure) {
var resp UserResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest(fmt.Sprintf("/users/%d", id))
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
2018-04-12 16:43:53 +03:00
// Change user status
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-users
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.UserStatus(12, "busy")
//
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
// fmt.Printf("%v", err.RuntimeErr)
// }
func (c *Client) UserStatus(id int, status string) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
p := url.Values{
"status": {string(status)},
}
data, st, err := c.PostRequest(fmt.Sprintf("/users/%d/status", id), p)
if err.RuntimeErr != nil {
return resp, st, err
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, st, buildErr(data)
}
return resp, st, err
}
2018-04-12 16:43:53 +03:00
// Statistics updating
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-statistic-update
func (c *Client) StaticticsUpdate() (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
2018-02-27 11:37:15 +03:00
data, status, err := c.GetRequest("/statistic/update")
if err.RuntimeErr != nil {
return resp, status, err
2018-02-27 11:37:15 +03:00
}
json.Unmarshal(data, &resp)
if resp.Success == false {
return resp, status, buildErr(data)
}
return resp, status, err
2018-02-27 11:37:15 +03:00
}
// Getting of the cost list, adequate for the given filter
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-costs
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Costs(CostsRequest{
// Filter: CostsFilter{
// Ids: []string{"1","2","3"},
// MinSumm: "1000"
// },
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.Costs {
// fmt.Printf("%v\n", value.Summ)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) Costs(costs CostsRequest) (CostsResponse, int, errs.Failure) {
var resp CostsResponse
params, _ := query.Values(costs)
data, status, err := c.GetRequest(fmt.Sprintf("/costs?%s", params.Encode()))
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Creation of the cost
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-costs-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostCreate(
// v5.CostRecord{
// DateFrom: "2012-12-12",
// DateTo: "2012-12-12",
// Summ: 12,
// CostItem: "calculation-of-costs",
// Order: Order{
// Number: "1"
// },
// Sites: []string{"store"},
// },
// "store"
// )
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.ID)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CostCreate(cost CostRecord, site ...string) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
costJSON, _ := json.Marshal(&cost)
p := url.Values{
"cost": {string(costJSON[:])},
}
fillSite(&p, site)
data, status, err := c.PostRequest("/costs/create", p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Cost removing
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-costs-delete
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.client.CostsDelete([]int{1, 2, 3, 48, 49, 50})
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("Not removed costs: %v", data.NotRemovedIds)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CostsDelete(ids []int) (CostsDeleteResponse, int, errs.Failure) {
var resp CostsDeleteResponse
costJSON, _ := json.Marshal(&ids)
p := url.Values{
"ids": {string(costJSON[:])},
}
data, status, err := c.PostRequest("/costs/delete", p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
2018-04-12 16:43:53 +03:00
// Batch loading of costs
//
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-costs-upload
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostCreate([]v5.CostRecord{
// {
// DateFrom: "2012-12-12",
// DateTo: "2012-12-12",
// Summ: 12,
// CostItem: "calculation-of-costs",
// Order: Order{
// Number: "1"
// },
// Sites: []string{"store"},
// },
// {
// DateFrom: "2012-12-13",
// DateTo: "2012-12-13",
// Summ: 13,
// CostItem: "seo",
// }
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("Uploaded costs: %v", data.UploadedCosts)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CostsUpload(cost []CostRecord) (CostsUploadResponse, int, errs.Failure) {
var resp CostsUploadResponse
costJSON, _ := json.Marshal(&cost)
p := url.Values{
"costs": {string(costJSON[:])},
}
data, status, err := c.PostRequest("/costs/upload", p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Getting of cost information
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-costs-id
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.Cost(1)
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.Cost)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) Cost(id int) (CostResponse, int, errs.Failure) {
var resp CostResponse
data, status, err := c.GetRequest(fmt.Sprintf("/costs/%d", id))
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Cost removing
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-costs-id-delete
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostDelete(1)
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CostDelete(id int) (SuccessfulResponse, int, errs.Failure) {
var resp SuccessfulResponse
costJSON, _ := json.Marshal(&id)
p := url.Values{
"costs": {string(costJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/costs/%d/delete", id), p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Cost editing
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-costs-id-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CostEdit(1, v5.Cost{
// DateFrom: "2012-12-12",
// DateTo: "2018-12-13",
// Summ: 321,
// CostItem: "seo",
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.Id)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CostEdit(id int, cost CostRecord, site ...string) (CreateResponse, int, errs.Failure) {
var resp CreateResponse
costJSON, _ := json.Marshal(&cost)
p := url.Values{
"cost": {string(costJSON[:])},
}
fillSite(&p, site)
data, status, err := c.PostRequest(fmt.Sprintf("/costs/%d/edit", id), p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Getting the list of custom fields
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-custom-fields
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomFields(v5.CustomFieldsRequest{
// Type: "string",
// Entity: "customer",
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.CustomFields {
// fmt.Printf("%v\n", value)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomFields(customFields CustomFieldsRequest) (CustomFieldsResponse, int, errs.Failure) {
var resp CustomFieldsResponse
params, _ := query.Values(customFields)
data, status, err := c.GetRequest(fmt.Sprintf("/custom-fields?%s", params.Encode()))
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Getting the list of custom directory
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-custom-fields-dictionaries
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomDictionaries(v5.CustomDictionariesRequest{
// Filter: v5.CustomDictionariesFilter{
// Name: "Dictionary-1",
// },
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// for _, value := range data.CustomDictionaries {
// fmt.Printf("%v\n", value.Elements)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomDictionaries(customDictionaries CustomDictionariesRequest) (CustomDictionariesResponse, int, errs.Failure) {
var resp CustomDictionariesResponse
params, _ := query.Values(customDictionaries)
data, status, err := c.GetRequest(fmt.Sprintf("/custom-fields/dictionaries?%s", params.Encode()))
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Directory fields creation
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-custom-fields-dictionaries-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomDictionariesCreate(v5.CustomDictionary{
// Name: "Courier profiles",
// Code: "courier-profiles",
// Elements: []Element{
// {
// Name: "Name",
// Code: "name",
// },
// {
// Name: "Lastname",
// Code: "lastname",
// }
// },
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.Code)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomDictionariesCreate(customDictionary CustomDictionary) (CustomResponse, int, errs.Failure) {
var resp CustomResponse
costJSON, _ := json.Marshal(&customDictionary)
p := url.Values{
"customDictionary": {string(costJSON[:])},
}
data, status, err := c.PostRequest("/custom-fields/dictionaries/create", p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Getting information on directory
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-custom-fields-entity-code
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomDictionary("courier-profiles")
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.CustomDictionary.Name)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomDictionary(code string) (CustomDictionaryResponse, int, errs.Failure) {
var resp CustomDictionaryResponse
data, status, err := c.GetRequest(fmt.Sprintf("/custom-fields/dictionaries/%s", code))
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Directory fields editing
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-custom-fields-dictionaries-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomDictionaryEdit(v5.CustomDictionary{
// Name: "Courier profiles",
// Code: "courier-profiles",
// Elements: []Element{
// {
// Name: "Name",
// Code: "name",
// },
// {
// Name: "Lastname",
// Code: "lastname",
// }
// },
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.Code)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomDictionaryEdit(customDictionary CustomDictionary) (CustomResponse, int, errs.Failure) {
var resp CustomResponse
costJSON, _ := json.Marshal(&customDictionary)
p := url.Values{
"customDictionary": {string(costJSON[:])},
}
data, status, err := c.PostRequest(fmt.Sprintf("/custom-fields/dictionaries/%s/edit", customDictionary.Code), p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Custom fields creation
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-custom-fields-entity-create
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
2018-04-12 16:43:53 +03:00
// data, status, err := client.CustomFieldsCreate(CustomFields{
// Name: "First order",
// Code: "first-order",
// Type: "bool",
// Entity: "order",
// DisplayArea: "customer",
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.Code)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomFieldsCreate(customFields CustomFields) (CustomResponse, int, errs.Failure) {
var resp CustomResponse
costJSON, _ := json.Marshal(&customFields)
p := url.Values{
"customField": {string(costJSON[:])},
}
2018-04-12 16:43:53 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/custom-fields/%s/create", customFields.Entity), p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// Getting information on custom fields
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#get--api-v5-custom-fields-entity-code
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
// data, status, err := client.CustomField("order", "first-order")
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.CustomField)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomField(entity, code string) (CustomFieldResponse, int, errs.Failure) {
var resp CustomFieldResponse
data, status, err := c.GetRequest(fmt.Sprintf("/custom-fields/%s/%s", entity, code))
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}
// CustomFieldEdit list method
//
2018-04-12 16:43:53 +03:00
// For more information see http://www.retailcrm.pro/docs/Developers/ApiVersion5#post--api-v5-custom-fields-entity-code-edit
//
// Example:
//
// var client = v5.New("https://demo.url", "09jIJ")
//
2018-04-12 16:43:53 +03:00
// data, status, err := client.CustomFieldEdit(CustomFields{
// Code: "first-order",
// Entity: "order",
// DisplayArea: "delivery",
// })
//
2018-04-12 16:43:53 +03:00
// if err.RuntimeErr != nil {
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// if status >= http.StatusBadRequest {
2018-04-12 16:43:53 +03:00
// fmt.Printf("%v", err.RuntimeErr)
// }
//
// If data.Success == true {
// fmt.Printf("%v", data.Code)
// }
2018-04-12 16:43:53 +03:00
func (c *Client) CustomFieldEdit(customFields CustomFields) (CustomResponse, int, errs.Failure) {
var resp CustomResponse
costJSON, _ := json.Marshal(&customFields)
p := url.Values{
"customField": {string(costJSON[:])},
}
2018-04-12 16:43:53 +03:00
data, status, err := c.PostRequest(fmt.Sprintf("/custom-fields/%s/%s/edit", customFields.Entity, customFields.Code), p)
2018-04-12 16:43:53 +03:00
if err.RuntimeErr != nil {
return resp, status, err
}
json.Unmarshal(data, &resp)
return resp, status, err
}