From 8a2e6f0a4b64713966fc77410252978d06f66f0f Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Wed, 27 Oct 2021 12:07:14 +0300 Subject: [PATCH] update readme and comments --- README.md | 101 ++++- client.go | 1296 ++++++++++++++++++++++++++--------------------------- 2 files changed, 725 insertions(+), 672 deletions(-) diff --git a/README.md b/README.md index 289c0fd..449868e 100644 --- a/README.md +++ b/README.md @@ -18,43 +18,43 @@ go get -u github.com/retailcrm/api-client-go/v2 ## Usage -```golang -package retailcrm +Example: + +```go +package main import ( - "fmt" - "net/http" + "log" "github.com/retailcrm/api-client-go/v2" ) func main() { - var client = v5.New("https://demo.retailcrm.pro", "09jIJ09j0JKhgyfvyuUIKhiugF") + var client = retailcrm.New("https://demo.retailcrm.pro", "09jIJ09j0JKhgyfvyuUIKhiugF") - data, status, err := client.Orders(v5.OrdersRequest{ - Filter: v5.OrdersFilter{}, + data, status, err := client.Orders(retailcrm.OrdersRequest{ + Filter: retailcrm.OrdersFilter{}, Limit: 20, Page: 1, - },) + }) if err != nil { - fmt.Printf("%v", err.Error()) - } + if apiErr, ok := retailcrm.AsAPIError(err); ok { + log.Fatalf("http status: %d, %s", status, apiErr.String()) + } - if status >= http.StatusBadRequest { - fmt.Printf("%v", err.ApiError()) + log.Fatalf("http status: %d, error: %s", status, err) } for _, value := range data.Orders { - fmt.Printf("%v\n", value.Email) + log.Printf("%v\n", value.Email) } - fmt.Println(data.Orders[1].FirstName) + log.Println(data.Orders[1].FirstName) - idata, status, err := c.InventoriesUpload( - []InventoryUpload{ + inventories, status, err := client.InventoriesUpload([]retailcrm.InventoryUpload{ { XMLID: "pTKIKAeghYzX21HTdzFCe1", - Stores: []InventoryUploadStore{ + Stores: []retailcrm.InventoryUploadStore{ { Code: "test-store-v5", Available: 10, @@ -74,7 +74,7 @@ func main() { }, { XMLID: "JQIvcrCtiSpOV3AAfMiQB3", - Stores: []InventoryUploadStore{ + Stores: []retailcrm.InventoryUploadStore{ { Code: "test-store-v5", Available: 45, @@ -95,13 +95,66 @@ func main() { }, ) if err != nil { - fmt.Printf("%v", err.Error()) + if apiErr, ok := retailcrm.AsAPIError(err); ok { + log.Fatalf("http status: %d, %s", status, apiErr.String()) + } + + log.Fatalf("http status: %d, error: %s", status, err) } - if status >= http.StatusBadRequest { - fmt.Printf("%v", err.ApiError()) - } - - fmt.Println(idata.processedOffersCount) + log.Println(inventories.ProcessedOffersCount) +} +``` + +You can use different error types and `retailcrm.AsAPIError` to process client errors. Example: + +```go +package retailcrm + +import ( + "errors" + "log" + "os" + "strings" + + "github.com/retailcrm/api-client-go/v2" +) + +func main() { + var client = retailcrm.New("https://demo.retailcrm.pro", "09jIJ09j0JKhgyfvyuUIKhiugF") + + resp, status, err := client.APICredentials() + if err != nil { + apiErr, ok := retailcrm.AsAPIError(err) + if !ok { + log.Fatalf("http status: %d, error: %s", status, err) + } + + switch { + case errors.Is(apiErr, retailcrm.ErrMissingCredentials): + log.Fatalln("No API key provided.") + case errors.Is(apiErr, retailcrm.ErrInvalidCredentials): + log.Fatalln("Invalid API key.") + case errors.Is(apiErr, retailcrm.ErrAccessDenied): + log.Fatalln("Access denied. Please check that the provided key has access to the credentials info.") + case errors.Is(apiErr, retailcrm.ErrAccountDoesNotExist): + log.Fatalln("There is no RetailCRM at the provided URL.") + case errors.Is(apiErr, retailcrm.ErrMissingParameter): + // retailcrm.APIError in this case will always contain "Name" key in the errors list with the parameter name. + log.Fatalln("This parameter should be present:", apiErr.Errors()["Name"]) + case errors.Is(apiErr, retailcrm.ErrValidation): + log.Println("Validation errors from the API:") + + for name, value := range apiErr.Errors() { + log.Printf(" - %s: %s\n", name, value) + } + + os.Exit(1) + case errors.Is(apiErr, retailcrm.ErrGeneric): + log.Fatalf("failure from the API. %s", apiErr.String()) + } + } + + log.Println("Available scopes:", strings.Join(resp.Scopes, ", ")) } ``` diff --git a/client.go b/client.go index 2c5a777..4ffafdd 100644 --- a/client.go +++ b/client.go @@ -211,20 +211,20 @@ func fillSite(p *url.Values, site []string) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.APIVersions() // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.versions { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) APIVersions() (VersionResponse, int, error) { var resp VersionResponse @@ -248,20 +248,20 @@ func (c *Client) APIVersions() (VersionResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.APICredentials() // // if err != nil { -// fmt.Printf("%v", err.Error()) +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } +// +// log.Fatalf("http status: %d, error: %s", status, err) // } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) -// } -// -// for _, value := range data.credentials { -// fmt.Printf("%v\n", value) +// for _, value := range data.Scopes { +// log.Printf("%v\n", value) // } func (c *Client) APICredentials() (CredentialResponse, int, error) { var resp CredentialResponse @@ -285,9 +285,9 @@ func (c *Client) APICredentials() (CredentialResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Customers(v5.CustomersRequest{ +// data, status, err := client.Customers(retailcrm.CustomersRequest{ // Filter: CustomersFilter{ // City: "Moscow", // }, @@ -295,15 +295,15 @@ func (c *Client) APICredentials() (CredentialResponse, int, error) { // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Customers { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Customers(parameters CustomersRequest) (CustomersResponse, int, error) { var resp CustomersResponse @@ -329,16 +329,16 @@ func (c *Client) Customers(parameters CustomersRequest) (CustomersResponse, int, // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomersCombine([]v5.Customer{{ID: 1}, {ID: 2}}, Customer{ID: 3}) +// data, status, err := client.CustomersCombine([]retailcrm.Customer{{ID: 1}, {ID: 2}}, Customer{ID: 3}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CustomersCombine(customers []Customer, resultCustomer Customer) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -370,30 +370,30 @@ func (c *Client) CustomersCombine(customers []Customer, resultCustomer Customer) // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomersCombine(v5.Customer{ +// data, status, err := client.CustomersCombine(retailcrm.Customer{ // FirstName: "Ivan", // LastName: "Ivanov", // Patronymic: "Ivanovich", // ExternalID: 1, // Email: "ivanov@example.com", -// Address: &v5.Address{ +// Address: &retailcrm.Address{ // City: "Moscow", // Street: "Kutuzovsky", // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v", err.Id) +// fmt.Printf("%v", data.ID) // } func (c *Client) CustomerCreate(customer Customer, site ...string) (CustomerChangeResponse, int, error) { var resp CustomerChangeResponse @@ -425,19 +425,19 @@ func (c *Client) CustomerCreate(customer Customer, site ...string) (CustomerChan // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomersFixExternalIds([]v5.IdentifiersPair{{ +// data, status, err := client.CustomersFixExternalIds([]retailcrm.IdentifiersPair{{ // ID: 1, // ExternalID: 12, // }}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CustomersFixExternalIds(customers []IdentifiersPair) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -467,24 +467,24 @@ func (c *Client) CustomersFixExternalIds(customers []IdentifiersPair) (Successfu // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomersHistory(v5.CustomersHistoryRequest{ -// Filter: v5.CustomersHistoryFilter{ +// data, status, err := client.CustomersHistory(retailcrm.CustomersHistoryRequest{ +// Filter: retailcrm.CustomersHistoryFilter{ // SinceID: 20, // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.History { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) CustomersHistory(parameters CustomersHistoryRequest) (CustomersHistoryResponse, int, error) { var resp CustomersHistoryResponse @@ -510,25 +510,25 @@ func (c *Client) CustomersHistory(parameters CustomersHistoryRequest) (Customers // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomerNotes(v5.NotesRequest{ -// Filter: v5.NotesFilter{ +// data, status, err := client.CustomerNotes(retailcrm.NotesRequest{ +// Filter: retailcrm.NotesFilter{ // CustomerIds: []int{1,2,3} // }, // Page: 1, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Notes { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) CustomerNotes(parameters NotesRequest) (NotesResponse, int, error) { var resp NotesResponse @@ -554,26 +554,26 @@ func (c *Client) CustomerNotes(parameters NotesRequest) (NotesResponse, int, err // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomerNoteCreate(v5.Note{ +// data, status, err := client.CustomerNoteCreate(retailcrm.Note{ // Text: "some text", // ManagerID: 12, -// Customer: &v5.Customer{ +// Customer: &retailcrm.Customer{ // ID: 1, // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) CustomerNoteCreate(note Note, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -605,15 +605,15 @@ func (c *Client) CustomerNoteCreate(note Note, site ...string) (CreateResponse, // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CustomerNoteDelete(12) // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CustomerNoteDelete(id int) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -641,9 +641,9 @@ func (c *Client) CustomerNoteDelete(id int) (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomersUpload([]v5.Customer{ +// data, status, err := client.CustomersUpload([]retailcrm.Customer{ // { // FirstName: "Ivan", // LastName: "Ivanov", @@ -661,15 +661,15 @@ func (c *Client) CustomerNoteDelete(id int) (SuccessfulResponse, int, error) { // }} // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.UploadedCustomers) +// log.Printf("%v\n", data.UploadedCustomers) // } func (c *Client) CustomersUpload(customers []Customer, site ...string) (CustomersUploadResponse, int, error) { var resp CustomersUploadResponse @@ -701,20 +701,20 @@ func (c *Client) CustomersUpload(customers []Customer, site ...string) (Customer // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Customer(12, v5.ByExternalID, "") +// data, status, err := client.Customer(12, retailcrm.ByExternalID, "") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Customer) +// log.Printf("%v\n", data.Customer) // } func (c *Client) Customer(id, by, site string) (CustomerResponse, int, error) { var resp CustomerResponse @@ -742,29 +742,29 @@ func (c *Client) Customer(id, by, site string) (CustomerResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CustomerEdit( -// v5.Customer{ +// retailcrm.Customer{ // FirstName: "Ivan", // LastName: "Ivanov", // Patronymic: "Ivanovich", // ID: 1, // Email: "ivanov@example.com", // }, -// v5.ByID, +// retailcrm.ByID, // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Customer) +// log.Printf("%v\n", data.Customer) // } func (c *Client) CustomerEdit(customer Customer, by string, site ...string) (CustomerChangeResponse, int, error) { var resp CustomerChangeResponse @@ -778,7 +778,7 @@ func (c *Client) CustomerEdit(customer Customer, by string, site ...string) (Cus customerJSON, _ := json.Marshal(&customer) p := url.Values{ - "by": {string(context)}, + "by": {context}, "customer": {string(customerJSON[:])}, } @@ -803,9 +803,9 @@ func (c *Client) CustomerEdit(customer Customer, by string, site ...string) (Cus // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomers(v5.CorporateCustomersRequest{ +// data, status, err := client.CorporateCustomers(retailcrm.CorporateCustomersRequest{ // Filter: CorporateCustomersFilter{ // City: "Moscow", // }, @@ -813,15 +813,15 @@ func (c *Client) CustomerEdit(customer Customer, by string, site ...string) (Cus // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.CustomersCorporate { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) CorporateCustomers(parameters CorporateCustomersRequest) (CorporateCustomersResponse, int, error) { var resp CorporateCustomersResponse @@ -847,22 +847,22 @@ func (c *Client) CorporateCustomers(parameters CorporateCustomersRequest) (Corpo // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomerCreate(v5.CorporateCustomer{ +// data, status, err := client.CorporateCustomerCreate(retailcrm.CorporateCustomer{ // Nickname: "Company", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v", err.Id) +// fmt.Printf("%v", data.ID) // } func (c *Client) CorporateCustomerCreate(customer CorporateCustomer, site ...string) ( CorporateCustomerChangeResponse, int, error, @@ -896,19 +896,19 @@ func (c *Client) CorporateCustomerCreate(customer CorporateCustomer, site ...str // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomersFixExternalIds([]v5.IdentifiersPair{{ +// data, status, err := client.CorporateCustomersFixExternalIds([]retailcrm.IdentifiersPair{{ // ID: 1, // ExternalID: 12, // }}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CorporateCustomersFixExternalIds(customers []IdentifiersPair) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -938,24 +938,24 @@ func (c *Client) CorporateCustomersFixExternalIds(customers []IdentifiersPair) ( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomersHistory(v5.CorporateCustomersHistoryRequest{ -// Filter: v5.CorporateCustomersHistoryFilter{ +// data, status, err := client.CorporateCustomersHistory(retailcrm.CorporateCustomersHistoryRequest{ +// Filter: retailcrm.CorporateCustomersHistoryFilter{ // SinceID: 20, // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.History { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) CorporateCustomersHistory(parameters CorporateCustomersHistoryRequest) ( CorporateCustomersHistoryResponse, int, error, @@ -977,15 +977,15 @@ func (c *Client) CorporateCustomersHistory(parameters CorporateCustomersHistoryR return resp, status, nil } -// CorporateCustomers returns list of corporate customers matched the specified filter +// CorporateCustomersNotes returns list of corporate customers notes matched the specified filter // // For more information see http://help.retailcrm.pro/Developers/ApiVersion5#get--api-v5-customers-corporate-notes // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomersNotes(v5.CorporateCustomersNotesRequest{ +// data, status, err := client.CorporateCustomersNotes(retailcrm.CorporateCustomersNotesRequest{ // Filter: CorporateCustomersNotesFilter{ // Text: "text", // }, @@ -993,15 +993,15 @@ func (c *Client) CorporateCustomersHistory(parameters CorporateCustomersHistoryR // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Notes { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) CorporateCustomersNotes(parameters CorporateCustomersNotesRequest) ( CorporateCustomersNotesResponse, int, error, @@ -1029,25 +1029,25 @@ func (c *Client) CorporateCustomersNotes(parameters CorporateCustomersNotesReque // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomerNoteCreate(v5.CorporateCustomerNote{ +// data, status, err := client.CorporateCustomerNoteCreate(retailcrm.CorporateCustomerNote{ // Text: "text", -// Customer: &v5.IdentifiersPair{ +// Customer: &retailcrm.IdentifiersPair{ // ID: 1, // } // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v", err.Id) +// fmt.Printf("%v", data.ID) // } func (c *Client) CorporateCustomerNoteCreate(note CorporateCustomerNote, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -1079,16 +1079,16 @@ func (c *Client) CorporateCustomerNoteCreate(note CorporateCustomerNote, site .. // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CorporateCustomerNoteDelete(12) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CorporateCustomerNoteDelete(id int) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -1116,9 +1116,9 @@ func (c *Client) CorporateCustomerNoteDelete(id int) (SuccessfulResponse, int, e // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomersUpload([]v5.CorporateCustomer{ +// data, status, err := client.CorporateCustomersUpload([]retailcrm.CorporateCustomer{ // { // Nickname: "Company", // ExternalID: 1, @@ -1130,15 +1130,15 @@ func (c *Client) CorporateCustomerNoteDelete(id int) (SuccessfulResponse, int, e // }} // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.UploadedCustomers) +// log.Printf("%v\n", data.UploadedCustomers) // } func (c *Client) CorporateCustomersUpload( customers []CorporateCustomer, site ...string, @@ -1172,20 +1172,20 @@ func (c *Client) CorporateCustomersUpload( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomer(12, v5.ByExternalID, "") +// data, status, err := client.CorporateCustomer(12, retailcrm.ByExternalID, "") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.CorporateCustomer) +// log.Printf("%v\n", data.CorporateCustomer) // } func (c *Client) CorporateCustomer(id, by, site string) (CorporateCustomerResponse, int, error) { var resp CorporateCustomerResponse @@ -1213,28 +1213,28 @@ func (c *Client) CorporateCustomer(id, by, site string) (CorporateCustomerRespon // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomerAddresses("ext-id", v5.CorporateCustomerAddressesRequest{ +// data, status, err := client.CorporateCustomerAddresses("ext-id", retailcrm.CorporateCustomerAddressesRequest{ // Filter: v5,CorporateCustomerAddressesFilter{ // Name: "Main Address", // }, -// By: v5.ByExternalID, +// By: retailcrm.ByExternalID, // Site: "site", // Limit: 20, // Page: 1, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Addresses) +// log.Printf("%v\n", data.Addresses) // } func (c *Client) CorporateCustomerAddresses( id string, parameters CorporateCustomerAddressesRequest, @@ -1263,19 +1263,19 @@ func (c *Client) CorporateCustomerAddresses( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := c.CorporateCustomerAddressesCreate("ext-id", v5.ByExternalID, v5.CorporateCustomerAddress{ +// data, status, err := c.CorporateCustomerAddressesCreate("ext-id", retailcrm.ByExternalID, retailcrm.CorporateCustomerAddress{ // Text: "this is new address", // Name: "New Address", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { @@ -1290,7 +1290,7 @@ func (c *Client) CorporateCustomerAddressesCreate( p := url.Values{ "address": {string(addressJSON[:])}, - "by": {string(checkBy(by))}, + "by": {checkBy(by)}, } fillSite(&p, site) @@ -1308,18 +1308,18 @@ func (c *Client) CorporateCustomerAddressesCreate( return resp, status, nil } -// CorporateCustomersAddressesEdit edit exact corporate customer address +// CorporateCustomerAddressesEdit edit exact corporate customer address // // For more information see http://help.retailcrm.pro/Developers/ApiVersion5#post--api-v5-customers-corporate-externalId-addresses-entityExternalId-edit // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := c.CorporateCustomerAddressesEdit( // "customer-ext-id", -// v5.ByExternalID, -// v5.ByExternalID, +// retailcrm.ByExternalID, +// retailcrm.ByExternalID, // CorporateCustomerAddress{ // ExternalID: "addr-ext-id", // Name: "Main Address 2", @@ -1327,15 +1327,15 @@ func (c *Client) CorporateCustomerAddressesCreate( // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Customer) +// log.Printf("%v\n", data.Customer) // } func (c *Client) CorporateCustomerAddressesEdit( customerID, customerBy, entityBy string, address CorporateCustomerAddress, site ...string, @@ -1358,8 +1358,8 @@ func (c *Client) CorporateCustomerAddressesEdit( addressJSON, _ := json.Marshal(&address) p := url.Values{ - "by": {string(customerBy)}, - "entityBy": {string(entityBy)}, + "by": {customerBy}, + "entityBy": {entityBy}, "address": {string(addressJSON[:])}, } @@ -1384,28 +1384,28 @@ func (c *Client) CorporateCustomerAddressesEdit( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomerCompanies("ext-id", v5.IdentifiersPairRequest{ +// data, status, err := client.CorporateCustomerCompanies("ext-id", retailcrm.IdentifiersPairRequest{ // Filter: v5,IdentifiersPairFilter{ // Ids: []string{"1"}, // }, -// By: v5.ByExternalID, +// By: retailcrm.ByExternalID, // Site: "site", // Limit: 20, // Page: 1, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Companies) +// log.Printf("%v\n", data.Companies) // } func (c *Client) CorporateCustomerCompanies( id string, parameters IdentifiersPairRequest, @@ -1434,18 +1434,18 @@ func (c *Client) CorporateCustomerCompanies( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := c.CorporateCustomerCompaniesCreate("ext-id", v5.ByExternalID, v5.Company{ +// data, status, err := c.CorporateCustomerCompaniesCreate("ext-id", retailcrm.ByExternalID, retailcrm.Company{ // Name: "Company name", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { @@ -1460,7 +1460,7 @@ func (c *Client) CorporateCustomerCompaniesCreate( p := url.Values{ "company": {string(companyJSON[:])}, - "by": {string(checkBy(by))}, + "by": {checkBy(by)}, } fillSite(&p, site) @@ -1484,12 +1484,12 @@ func (c *Client) CorporateCustomerCompaniesCreate( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := c.CorporateCustomerCompaniesEdit( // "customer-ext-id", -// v5.ByExternalID, -// v5.ByExternalID, +// retailcrm.ByExternalID, +// retailcrm.ByExternalID, // Company{ // ExternalID: "company-ext-id", // Name: "New Company Name", @@ -1497,15 +1497,15 @@ func (c *Client) CorporateCustomerCompaniesCreate( // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) CorporateCustomerCompaniesEdit( customerID, customerBy, entityBy string, company Company, site ...string, @@ -1528,8 +1528,8 @@ func (c *Client) CorporateCustomerCompaniesEdit( addressJSON, _ := json.Marshal(&company) p := url.Values{ - "by": {string(customerBy)}, - "entityBy": {string(entityBy)}, + "by": {customerBy}, + "entityBy": {entityBy}, "company": {string(addressJSON[:])}, } @@ -1554,28 +1554,28 @@ func (c *Client) CorporateCustomerCompaniesEdit( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CorporateCustomerContacts("ext-id", v5.IdentifiersPairRequest{ -// Filter: v5.IdentifiersPairFilter{ +// data, status, err := client.CorporateCustomerContacts("ext-id", retailcrm.IdentifiersPairRequest{ +// Filter: retailcrm.IdentifiersPairFilter{ // Ids: []string{"1"}, // }, -// By: v5.ByExternalID, +// By: retailcrm.ByExternalID, // Site: "site", // Limit: 20, // Page: 1, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Contacts) +// log.Printf("%v\n", data.Contacts) // } func (c *Client) CorporateCustomerContacts( id string, parameters IdentifiersPairRequest, @@ -1604,11 +1604,11 @@ func (c *Client) CorporateCustomerContacts( // // Example (customer with specified id or externalId should exist in specified site): // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := c.CorporateCustomerContactsCreate("ext-id", v5.ByExternalID, v5.CorporateCustomerContact{ +// data, status, err := c.CorporateCustomerContactsCreate("ext-id", retailcrm.ByExternalID, retailcrm.CorporateCustomerContact{ // IsMain: false, -// Customer: v5.CorporateCustomerContactCustomer{ +// Customer: retailcrm.CorporateCustomerContactCustomer{ // ExternalID: "external_id", // Site: "site", // }, @@ -1616,11 +1616,11 @@ func (c *Client) CorporateCustomerContacts( // }, "site") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { @@ -1635,7 +1635,7 @@ func (c *Client) CorporateCustomerContactsCreate( p := url.Values{ "contact": {string(companyJSON[:])}, - "by": {string(checkBy(by))}, + "by": {checkBy(by)}, } fillSite(&p, site) @@ -1659,25 +1659,25 @@ func (c *Client) CorporateCustomerContactsCreate( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := c.CorporateCustomerContactsEdit("ext-id", v5.ByExternalID, v5.ByID, v5.CorporateCustomerContact{ +// data, status, err := c.CorporateCustomerContactsEdit("ext-id", retailcrm.ByExternalID, retailcrm.ByID, retailcrm.CorporateCustomerContact{ // IsMain: false, -// Customer: v5.CorporateCustomerContactCustomer{ +// Customer: retailcrm.CorporateCustomerContactCustomer{ // ID: 2350, // }, // }, "site") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) CorporateCustomerContactsEdit( customerID, customerBy, entityBy string, contact CorporateCustomerContact, site ...string, @@ -1700,8 +1700,8 @@ func (c *Client) CorporateCustomerContactsEdit( addressJSON, _ := json.Marshal(&contact) p := url.Values{ - "by": {string(customerBy)}, - "entityBy": {string(entityBy)}, + "by": {customerBy}, + "entityBy": {entityBy}, "contact": {string(addressJSON[:])}, } @@ -1726,29 +1726,29 @@ func (c *Client) CorporateCustomerContactsEdit( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CorporateCustomerEdit( -// v5.CorporateCustomer{ +// retailcrm.CorporateCustomer{ // FirstName: "Ivan", // LastName: "Ivanov", // Patronymic: "Ivanovich", // ID: 1, // Email: "ivanov@example.com", // }, -// v5.ByID, +// retailcrm.ByID, // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Customer) +// log.Printf("%v\n", data.Customer) // } func (c *Client) CorporateCustomerEdit(customer CorporateCustomer, by string, site ...string) ( CustomerChangeResponse, int, error, @@ -1764,7 +1764,7 @@ func (c *Client) CorporateCustomerEdit(customer CorporateCustomer, by string, si customerJSON, _ := json.Marshal(&customer) p := url.Values{ - "by": {string(context)}, + "by": {context}, "customerCorporate": {string(customerJSON[:])}, } @@ -1789,14 +1789,14 @@ func (c *Client) CorporateCustomerEdit(customer CorporateCustomer, by string, si // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // t, _ := time.Parse("2006-01-02 15:04:05", "2012-12-12 12:12:12") // // data, status, err := client.DeliveryTracking( -// []v5.DeliveryTrackingRequest{{ +// []retailcrm.DeliveryTrackingRequest{{ // DeliveryID: "1", // TrackNumber: "123", -// History: []v5.DeliveryHistoryRecord{ +// History: []retailcrm.DeliveryHistoryRecord{ // { // Code: "cancel", // UpdatedAt: t.Format(time.RFC3339), @@ -1807,11 +1807,11 @@ func (c *Client) CorporateCustomerEdit(customer CorporateCustomer, by string, si // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // func (c *Client) DeliveryTracking(parameters []DeliveryTrackingRequest, subcode string) ( @@ -1844,25 +1844,25 @@ func (c *Client) DeliveryTracking(parameters []DeliveryTrackingRequest, subcode // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.DeliveryShipments(v5.DeliveryShipmentsRequest{ +// data, status, err := client.DeliveryShipments(retailcrm.DeliveryShipmentsRequest{ // Limit: 12, -// Filter: v5.ShipmentFilter{ +// Filter: retailcrm.ShipmentFilter{ // DateFrom: "2012-12-12", // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.DeliveryShipments { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) DeliveryShipments(parameters DeliveryShipmentsRequest) (DeliveryShipmentsResponse, int, error) { var resp DeliveryShipmentsResponse @@ -1888,30 +1888,30 @@ func (c *Client) DeliveryShipments(parameters DeliveryShipmentsRequest) (Deliver // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.DeliveryShipmentCreate( -// v5.DeliveryShipment{ +// retailcrm.DeliveryShipment{ // Date: "2012-12-12", -// Time: v5.DeliveryTime{ +// Time: retailcrm.DeliveryTime{ // From: "18:00", // To: "20:00", // }, -// Orders: []v5.Order{{Number: "12"}}, +// Orders: []retailcrm.Order{{Number: "12"}}, // }, // "sdek", // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) DeliveryShipmentCreate( shipment DeliveryShipment, deliveryType string, site ...string, @@ -1920,7 +1920,7 @@ func (c *Client) DeliveryShipmentCreate( updateJSON, _ := json.Marshal(&shipment) p := url.Values{ - "deliveryType": {string(deliveryType)}, + "deliveryType": {deliveryType}, "deliveryShipment": {string(updateJSON[:])}, } @@ -1945,20 +1945,20 @@ func (c *Client) DeliveryShipmentCreate( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.DeliveryShipment(12) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.DeliveryShipment) +// log.Printf("%v\n", data.DeliveryShipment) // } func (c *Client) DeliveryShipment(id int) (DeliveryShipmentResponse, int, error) { var resp DeliveryShipmentResponse @@ -1982,22 +1982,22 @@ func (c *Client) DeliveryShipment(id int) (DeliveryShipmentResponse, int, error) // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.DeliveryShipmentEdit(v5.DeliveryShipment{ +// data, status, err := client.DeliveryShipmentEdit(retailcrm.DeliveryShipment{ // ID: "12", -// Time: v5.DeliveryTime{ +// Time: retailcrm.DeliveryTime{ // From: "14:00", // To: "18:00", // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) DeliveryShipmentEdit(shipment DeliveryShipment, site ...string) ( DeliveryShipmentUpdateResponse, int, error, @@ -2030,20 +2030,20 @@ func (c *Client) DeliveryShipmentEdit(shipment DeliveryShipment, site ...string) // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.IntegrationModule("moysklad3") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.IntegrationModule) +// log.Printf("%v\n", data.IntegrationModule) // } func (c *Client) IntegrationModule(code string) (IntegrationModuleResponse, int, error) { var resp IntegrationModuleResponse @@ -2067,12 +2067,12 @@ func (c *Client) IntegrationModule(code string) (IntegrationModuleResponse, int, // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // name := "MS" // code := "moysklad3" // -// data, status, err := client.IntegrationModuleEdit(v5.IntegrationModule{ +// data, status, err := client.IntegrationModuleEdit(retailcrm.IntegrationModule{ // Code: code, // IntegrationCode: code, // Active: false, @@ -2121,20 +2121,20 @@ func (c *Client) IntegrationModuleEdit(integrationModule IntegrationModule) ( // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Orders(v5.OrdersRequest{Filter: v5.OrdersFilter{City: "Moscow"}, Page: 1}) +// data, status, err := client.Orders(retailcrm.OrdersRequest{Filter: retailcrm.OrdersFilter{City: "Moscow"}, Page: 1}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Orders { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Orders(parameters OrdersRequest) (OrdersResponse, int, error) { var resp OrdersResponse @@ -2160,16 +2160,16 @@ func (c *Client) Orders(parameters OrdersRequest) (OrdersResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrdersCombine("ours", v5.Order{ID: 1}, v5.Order{ID: 1}) +// data, status, err := client.OrdersCombine("ours", retailcrm.Order{ID: 1}, retailcrm.Order{ID: 1}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrdersCombine(technique string, order, resultOrder Order) (OperationResponse, int, error) { var resp OperationResponse @@ -2202,26 +2202,26 @@ func (c *Client) OrdersCombine(technique string, order, resultOrder Order) (Oper // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrderCreate(v5.Order{ +// data, status, err := client.OrderCreate(retailcrm.Order{ // FirstName: "Ivan", // LastName: "Ivanov", // Patronymic: "Ivanovich", // Email: "ivanov@example.com", -// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 12}, Quantity: 5}}, +// Items: []retailcrm.OrderItem{{Offer: retailcrm.Offer{ID: 12}, Quantity: 5}}, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) OrderCreate(order Order, site ...string) (OrderCreateResponse, int, error) { var resp OrderCreateResponse @@ -2252,9 +2252,9 @@ func (c *Client) OrderCreate(order Order, site ...string) (OrderCreateResponse, // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrdersFixExternalIds(([]v5.IdentifiersPair{{ +// data, status, err := client.OrdersFixExternalIds(([]retailcrm.IdentifiersPair{{ // ID: 1, // ExternalID: 12, // }}) @@ -2298,20 +2298,20 @@ func (c *Client) OrdersFixExternalIds(orders []IdentifiersPair) (SuccessfulRespo // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrdersHistory(v5.OrdersHistoryRequest{Filter: v5.OrdersHistoryFilter{SinceID: 20}}) +// data, status, err := client.OrdersHistory(retailcrm.OrdersHistoryRequest{Filter: retailcrm.OrdersHistoryFilter{SinceID: 20}}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.History { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) OrdersHistory(parameters OrdersHistoryRequest) (OrdersHistoryResponse, int, error) { var resp OrdersHistoryResponse @@ -2337,10 +2337,10 @@ func (c *Client) OrdersHistory(parameters OrdersHistoryRequest) (OrdersHistoryRe // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrderPaymentCreate(v5.Payment{ -// Order: &v5.Order{ +// data, status, err := client.OrderPaymentCreate(retailcrm.Payment{ +// Order: &retailcrm.Order{ // ID: 12, // }, // Amount: 300, @@ -2348,15 +2348,15 @@ func (c *Client) OrdersHistory(parameters OrdersHistoryRequest) (OrdersHistoryRe // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) OrderPaymentCreate(payment Payment, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -2388,16 +2388,16 @@ func (c *Client) OrderPaymentCreate(payment Payment, site ...string) (CreateResp // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.OrderPaymentDelete(12) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrderPaymentDelete(id int) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -2425,22 +2425,22 @@ func (c *Client) OrderPaymentDelete(id int) (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.OrderPaymentEdit( -// v5.Payment{ +// retailcrm.Payment{ // ID: 12, // Amount: 500, // }, -// v5.ByID, +// retailcrm.ByID, // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrderPaymentEdit(payment Payment, by string, site ...string) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -2479,19 +2479,19 @@ func (c *Client) OrderPaymentEdit(payment Payment, by string, site ...string) (S // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrdersStatuses(v5.OrdersStatusesRequest{ +// data, status, err := client.OrdersStatuses(retailcrm.OrdersStatusesRequest{ // IDs: []int{1}, // ExternalIDs: []string{"2"}, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrdersStatuses(request OrdersStatusesRequest) (OrdersStatusesResponse, int, error) { var resp OrdersStatusesResponse @@ -2517,35 +2517,35 @@ func (c *Client) OrdersStatuses(request OrdersStatusesRequest) (OrdersStatusesRe // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrdersUpload([]v5.Order{ +// data, status, err := client.OrdersUpload([]retailcrm.Order{ // { // FirstName: "Ivan", // LastName: "Ivanov", // Patronymic: "Ivanovich", // Email: "ivanov@example.com", -// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 12}, Quantity: 5}}, +// Items: []retailcrm.OrderItem{{Offer: retailcrm.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}}, +// Items: []retailcrm.OrderItem{{Offer: retailcrm.Offer{ID: 13}, Quantity: 1}}, // } // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.UploadedOrders) +// log.Printf("%v\n", data.UploadedOrders) // } func (c *Client) OrdersUpload(orders []Order, site ...string) (OrdersUploadResponse, int, error) { var resp OrdersUploadResponse @@ -2577,20 +2577,20 @@ func (c *Client) OrdersUpload(orders []Order, site ...string) (OrdersUploadRespo // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Order(12, v5.ByExternalID, "") +// data, status, err := client.Order(12, retailcrm.ByExternalID, "") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Order) +// log.Printf("%v\n", data.Order) // } func (c *Client) Order(id, by, site string) (OrderResponse, int, error) { var resp OrderResponse @@ -2618,22 +2618,22 @@ func (c *Client) Order(id, by, site string) (OrderResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.OrderEdit( -// v5.Order{ +// retailcrm.Order{ // ID: 12, -// Items: []v5.OrderItem{{Offer: v5.Offer{ID: 13}, Quantity: 6}}, +// Items: []retailcrm.OrderItem{{Offer: retailcrm.Offer{ID: 13}, Quantity: 6}}, // }, -// v5.ByID, +// retailcrm.ByID, // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrderEdit(order Order, by string, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -2647,7 +2647,7 @@ func (c *Client) OrderEdit(order Order, by string, site ...string) (CreateRespon orderJSON, _ := json.Marshal(&order) p := url.Values{ - "by": {string(context)}, + "by": {context}, "order": {string(orderJSON[:])}, } @@ -2672,20 +2672,20 @@ func (c *Client) OrderEdit(order Order, by string, site ...string) (CreateRespon // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Packs(v5.PacksRequest{Filter: v5.PacksFilter{OrderID: 12}}) +// data, status, err := client.Packs(retailcrm.PacksRequest{Filter: retailcrm.PacksFilter{OrderID: 12}}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Packs { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Packs(parameters PacksRequest) (PacksResponse, int, error) { var resp PacksResponse @@ -2711,7 +2711,7 @@ func (c *Client) Packs(parameters PacksRequest) (PacksResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.PackCreate(Pack{ // Store: "store-1", @@ -2720,15 +2720,15 @@ func (c *Client) Packs(parameters PacksRequest) (PacksResponse, int, error) { // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) PackCreate(pack Pack) (CreateResponse, int, error) { var resp CreateResponse @@ -2757,20 +2757,20 @@ func (c *Client) PackCreate(pack Pack) (CreateResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.PacksHistory(v5.PacksHistoryRequest{Filter: v5.OrdersHistoryFilter{SinceID: 5}}) +// data, status, err := client.PacksHistory(retailcrm.PacksHistoryRequest{Filter: retailcrm.OrdersHistoryFilter{SinceID: 5}}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.History { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) PacksHistory(parameters PacksHistoryRequest) (PacksHistoryResponse, int, error) { var resp PacksHistoryResponse @@ -2796,20 +2796,20 @@ func (c *Client) PacksHistory(parameters PacksHistoryRequest) (PacksHistoryRespo // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Pack(112) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Pack) +// log.Printf("%v\n", data.Pack) // } func (c *Client) Pack(id int) (PackResponse, int, error) { var resp PackResponse @@ -2833,16 +2833,16 @@ func (c *Client) Pack(id int) (PackResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.PackDelete(112) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) PackDelete(id int) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -2866,16 +2866,16 @@ func (c *Client) PackDelete(id int) (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.PackEdit(Pack{ID: 12, Quantity: 2}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) PackEdit(pack Pack) (CreateResponse, int, error) { var resp CreateResponse @@ -2943,19 +2943,19 @@ func (c *Client) CostGroups() (CostGroupsResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CostGroupEdit(v5.CostGroup{ +// data, status, err := client.CostGroupEdit(retailcrm.CostGroup{ // Code: "group-1", // Color: "#da5c98", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CostGroupEdit(costGroup CostGroup) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3004,19 +3004,19 @@ func (c *Client) CostItems() (CostItemsResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CostItemEdit(v5.CostItem{ +// data, status, err := client.CostItemEdit(retailcrm.CostItem{ // Code: "seo", // Active: false, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CostItemEdit(costItem CostItem) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3065,9 +3065,9 @@ func (c *Client) Couriers() (CouriersResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CostItemEdit(v5.Courier{ +// data, status, err := client.CostItemEdit(retailcrm.Courier{ // Active: true, // Email: "courier1@example.com", // FirstName: "Ivan", @@ -3075,15 +3075,15 @@ func (c *Client) Couriers() (CouriersResponse, int, error) { // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v", data.ID) +// log.Printf("%v", data.ID) // } func (c *Client) CourierCreate(courier Courier) (CreateResponse, int, error) { var resp CreateResponse @@ -3113,19 +3113,19 @@ func (c *Client) CourierCreate(courier Courier) (CreateResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CostItemEdit(v5.Courier{ +// data, status, err := client.CostItemEdit(retailcrm.Courier{ // ID: 1, // Patronymic: "Ivanovich", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CourierEdit(courier Courier) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3174,19 +3174,19 @@ func (c *Client) DeliveryServices() (DeliveryServiceResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.DeliveryServiceEdit(v5.DeliveryService{ +// data, status, err := client.DeliveryServiceEdit(retailcrm.DeliveryService{ // Active: false, // Code: "delivery-1", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) DeliveryServiceEdit(deliveryService DeliveryService) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3235,9 +3235,9 @@ func (c *Client) DeliveryTypes() (DeliveryTypesResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.DeliveryTypeEdit(v5.DeliveryType{ +// data, status, err := client.DeliveryTypeEdit(retailcrm.DeliveryType{ // Active: false, // Code: "type-1", // DefaultCost: 300, @@ -3245,11 +3245,11 @@ func (c *Client) DeliveryTypes() (DeliveryTypesResponse, int, error) { // } // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) DeliveryTypeEdit(deliveryType DeliveryType) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3298,19 +3298,19 @@ func (c *Client) LegalEntities() (LegalEntitiesResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.LegalEntityEdit(v5.LegalEntity{ +// data, status, err := client.LegalEntityEdit(retailcrm.LegalEntity{ // Code: "legal-entity-1", // CertificateDate: "2012-12-12", // } // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) LegalEntityEdit(legalEntity LegalEntity) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3359,20 +3359,20 @@ func (c *Client) OrderMethods() (OrderMethodsResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrderMethodEdit(v5.OrderMethod{ +// data, status, err := client.OrderMethodEdit(retailcrm.OrderMethod{ // Code: "method-1", // Active: false, // DefaultForCRM: false, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrderMethodEdit(orderMethod OrderMethod) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3421,20 +3421,20 @@ func (c *Client) OrderTypes() (OrderTypesResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.OrderTypeEdit(v5.OrderType{ +// data, status, err := client.OrderTypeEdit(retailcrm.OrderType{ // Code: "order-type-1", // Active: false, // DefaultForCRM: false, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) OrderTypeEdit(orderType OrderType) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -3835,10 +3835,10 @@ func (c *Client) UnitEdit(unit Unit) (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Segments(SegmentsRequest{ -// Filter: v5.SegmentsFilter{ +// Filter: retailcrm.SegmentsFilter{ // Ids: []int{1,2,3} // } // }) @@ -3878,7 +3878,7 @@ func (c *Client) Segments(parameters SegmentsRequest) (SegmentsResponse, int, er // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Settings() // @@ -3913,20 +3913,20 @@ func (c *Client) Settings() (SettingsResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Inventories(v5.InventoriesRequest{Filter: v5.InventoriesFilter{Details: 1, ProductActive: 1}, Page: 1}) +// data, status, err := client.Inventories(retailcrm.InventoriesRequest{Filter: retailcrm.InventoriesFilter{Details: 1, ProductActive: 1}, Page: 1}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Offers { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Inventories(parameters InventoriesRequest) (InventoriesResponse, int, error) { var resp InventoriesResponse @@ -3952,10 +3952,10 @@ func (c *Client) Inventories(parameters InventoriesRequest) (InventoriesResponse // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.InventoriesUpload( -// []v5.InventoryUpload{ +// []retailcrm.InventoryUpload{ // { // XMLID: "pT22K9YzX21HTdzFCe1", // Stores: []InventoryUploadStore{ @@ -4014,9 +4014,9 @@ func (c *Client) InventoriesUpload(inventories []InventoryUpload, site ...string // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.PricesUpload([]v5.OfferPriceUpload{ +// data, status, err := client.PricesUpload([]retailcrm.OfferPriceUpload{ // { // ID 1 // Site "store-1" @@ -4066,24 +4066,24 @@ func (c *Client) PricesUpload(prices []OfferPriceUpload) (StoreUploadResponse, i // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.ProductsGroup(v5.ProductsGroupsRequest{ -// Filter: v5.ProductsGroupsFilter{ +// data, status, err := client.ProductsGroup(retailcrm.ProductsGroupsRequest{ +// Filter: retailcrm.ProductsGroupsFilter{ // Active: 1, // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.ProductGroup { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) ProductsGroup(parameters ProductsGroupsRequest) (ProductsGroupsResponse, int, error) { var resp ProductsGroupsResponse @@ -4109,25 +4109,25 @@ func (c *Client) ProductsGroup(parameters ProductsGroupsRequest) (ProductsGroups // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Products(v5.ProductsRequest{ -// Filter: v5.ProductsFilter{ +// data, status, err := client.Products(retailcrm.ProductsRequest{ +// Filter: retailcrm.ProductsFilter{ // Active: 1, // MinPrice: 1000, // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Products { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Products(parameters ProductsRequest) (ProductsResponse, int, error) { var resp ProductsResponse @@ -4153,24 +4153,24 @@ func (c *Client) Products(parameters ProductsRequest) (ProductsResponse, int, er // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.ProductsProperties(v5.ProductsPropertiesRequest{ -// Filter: v5.ProductsPropertiesFilter{ +// data, status, err := client.ProductsProperties(retailcrm.ProductsPropertiesRequest{ +// Filter: retailcrm.ProductsPropertiesFilter{ // Sites: []string["store"], // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Properties { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) ProductsProperties(parameters ProductsPropertiesRequest) (ProductsPropertiesResponse, int, error) { var resp ProductsPropertiesResponse @@ -4196,24 +4196,24 @@ func (c *Client) ProductsProperties(parameters ProductsPropertiesRequest) (Produ // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Tasks(v5.TasksRequest{ +// data, status, err := client.Tasks(retailcrm.TasksRequest{ // Filter: TasksFilter{ // DateFrom: "2012-12-12", // }, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Tasks { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Tasks(parameters TasksRequest) (TasksResponse, int, error) { var resp TasksResponse @@ -4239,23 +4239,23 @@ func (c *Client) Tasks(parameters TasksRequest) (TasksResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Tasks(v5.Task{ +// data, status, err := client.Tasks(retailcrm.Task{ // Text: "task №1", // PerformerID: 12, // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.ID) +// log.Printf("%v\n", data.ID) // } func (c *Client) TaskCreate(task Task, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -4286,20 +4286,20 @@ func (c *Client) TaskCreate(task Task, site ...string) (CreateResponse, int, err // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Task(12) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.Task) +// log.Printf("%v\n", data.Task) // } func (c *Client) Task(id int) (TaskResponse, int, error) { var resp TaskResponse @@ -4323,19 +4323,19 @@ func (c *Client) Task(id int) (TaskResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Task(v5.Task{ +// data, status, err := client.Task(retailcrm.Task{ // ID: 12 // Text: "task №2", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) TaskEdit(task Task, site ...string) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -4373,20 +4373,20 @@ func (c *Client) TaskEdit(task Task, site ...string) (SuccessfulResponse, int, e // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.UserGroups(v5.UserGroupsRequest{Page: 1}) +// data, status, err := client.UserGroups(retailcrm.UserGroupsRequest{Page: 1}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Groups { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) UserGroups(parameters UserGroupsRequest) (UserGroupsResponse, int, error) { var resp UserGroupsResponse @@ -4412,20 +4412,20 @@ func (c *Client) UserGroups(parameters UserGroupsRequest) (UserGroupsResponse, i // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.Users(v5.UsersRequest{Filter: v5.UsersFilter{Active: 1}, Page: 1}) +// data, status, err := client.Users(retailcrm.UsersRequest{Filter: retailcrm.UsersFilter{Active: 1}, Page: 1}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Users { -// fmt.Printf("%v\n", value) +// log.Printf("%v\n", value) // } func (c *Client) Users(parameters UsersRequest) (UsersResponse, int, error) { var resp UsersResponse @@ -4451,20 +4451,20 @@ func (c *Client) Users(parameters UsersRequest) (UsersResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.User(12) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.User) +// log.Printf("%v\n", data.User) // } func (c *Client) User(id int) (UserResponse, int, error) { var resp UserResponse @@ -4488,22 +4488,22 @@ func (c *Client) User(id int) (UserResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.UserStatus(12, "busy") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) UserStatus(id int, status string) (SuccessfulResponse, int, error) { var resp SuccessfulResponse p := url.Values{ - "status": {string(status)}, + "status": {status}, } data, st, err := c.PostRequest(fmt.Sprintf("/users/%d/status", id), p) @@ -4548,7 +4548,7 @@ func (c *Client) StaticticsUpdate() (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Costs(CostsRequest{ // Filter: CostsFilter{ @@ -4558,15 +4558,15 @@ func (c *Client) StaticticsUpdate() (SuccessfulResponse, int, error) { // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.Costs { -// fmt.Printf("%v\n", value.Summ) +// log.Printf("%v\n", value.Summ) // } func (c *Client) Costs(costs CostsRequest) (CostsResponse, int, error) { var resp CostsResponse @@ -4587,16 +4587,16 @@ func (c *Client) Costs(costs CostsRequest) (CostsResponse, int, error) { return resp, status, nil } -// CostCreate create an cost +// CostCreate create the cost // // 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") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CostCreate( -// v5.CostRecord{ +// retailcrm.CostRecord{ // DateFrom: "2012-12-12", // DateTo: "2012-12-12", // Summ: 12, @@ -4610,15 +4610,15 @@ func (c *Client) Costs(costs CostsRequest) (CostsResponse, int, error) { // ) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.ID) +// log.Printf("%v", data.ID) // } func (c *Client) CostCreate(cost CostRecord, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -4650,20 +4650,20 @@ func (c *Client) CostCreate(cost CostRecord, site ...string) (CreateResponse, in // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.client.CostsDelete([]int{1, 2, 3, 48, 49, 50}) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("Not removed costs: %v", data.NotRemovedIds) +// log.Printf("Not removed costs: %v", data.NotRemovedIds) // } func (c *Client) CostsDelete(ids []int) (CostsDeleteResponse, int, error) { var resp CostsDeleteResponse @@ -4693,9 +4693,9 @@ func (c *Client) CostsDelete(ids []int) (CostsDeleteResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CostCreate([]v5.CostRecord{ +// data, status, err := client.CostCreate([]retailcrm.CostRecord{ // { // DateFrom: "2012-12-12", // DateTo: "2012-12-12", @@ -4715,15 +4715,15 @@ func (c *Client) CostsDelete(ids []int) (CostsDeleteResponse, int, error) { // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("Uploaded costs: %v", data.UploadedCosts) +// log.Printf("Uploaded costs: %v", data.UploadedCosts) // } func (c *Client) CostsUpload(cost []CostRecord) (CostsUploadResponse, int, error) { var resp CostsUploadResponse @@ -4753,20 +4753,20 @@ func (c *Client) CostsUpload(cost []CostRecord) (CostsUploadResponse, int, error // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Cost(1) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.Cost) +// log.Printf("%v", data.Cost) // } func (c *Client) Cost(id int) (CostResponse, int, error) { var resp CostResponse @@ -4791,16 +4791,16 @@ func (c *Client) Cost(id int) (CostResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CostDelete(1) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) CostDelete(id int) (SuccessfulResponse, int, error) { var resp SuccessfulResponse @@ -4831,9 +4831,9 @@ func (c *Client) CostDelete(id int) (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CostEdit(1, v5.Cost{ +// data, status, err := client.CostEdit(1, retailcrm.Cost{ // DateFrom: "2012-12-12", // DateTo: "2018-12-13", // Summ: 321, @@ -4841,15 +4841,15 @@ func (c *Client) CostDelete(id int) (SuccessfulResponse, int, error) { // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.Id) +// log.Printf("%v", data.ID) // } func (c *Client) CostEdit(id int, cost CostRecord, site ...string) (CreateResponse, int, error) { var resp CreateResponse @@ -4881,7 +4881,7 @@ func (c *Client) CostEdit(id int, cost CostRecord, site ...string) (CreateRespon // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.Files(FilesRequest{ // Filter: FilesFilter{ @@ -4890,11 +4890,11 @@ func (c *Client) CostEdit(id int, cost CostRecord, site ...string) (CreateRespon // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } func (c *Client) Files(files FilesRequest) (FilesResponse, int, error) { var resp FilesResponse @@ -4921,7 +4921,7 @@ func (c *Client) Files(files FilesRequest) (FilesResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // file, err := os.Open("file.jpg") // if err != nil { @@ -4960,20 +4960,20 @@ func (c *Client) FileUpload(reader io.Reader) (FileUploadResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.File(112) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // if data.Success == true { -// fmt.Printf("%v\n", data.File) +// log.Printf("%v\n", data.File) // } func (c *Client) File(id int) (FileResponse, int, error) { var resp FileResponse @@ -4997,7 +4997,7 @@ func (c *Client) File(id int) (FileResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.FileDelete(123) // @@ -5031,7 +5031,7 @@ func (c *Client) FileDelete(id int) (SuccessfulResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // fileData, status, err := client.FileDownload(123) // @@ -5058,7 +5058,7 @@ func (c *Client) FileDownload(id int) (io.ReadCloser, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.FileEdit(123, File{Filename: "image2.jpg"}) // @@ -5097,19 +5097,19 @@ func (c *Client) FileEdit(id int, file File) (FileResponse, int, error) { // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomFields(v5.CustomFieldsRequest{ +// data, status, err := client.CustomFields(retailcrm.CustomFieldsRequest{ // Type: "string", // Entity: "customer", // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // for _, value := range data.CustomFields { @@ -5140,10 +5140,10 @@ func (c *Client) CustomFields(customFields CustomFieldsRequest) (CustomFieldsRes // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomDictionaries(v5.CustomDictionariesRequest{ -// Filter: v5.CustomDictionariesFilter{ +// data, status, err := client.CustomDictionaries(retailcrm.CustomDictionariesRequest{ +// Filter: retailcrm.CustomDictionariesFilter{ // Name: "Dictionary-1", // }, // }) @@ -5186,9 +5186,9 @@ func (c *Client) CustomDictionaries(customDictionaries CustomDictionariesRequest // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomDictionariesCreate(v5.CustomDictionary{ +// data, status, err := client.CustomDictionariesCreate(retailcrm.CustomDictionary{ // Name: "Courier profiles", // Code: "courier-profiles", // Elements: []Element{ @@ -5243,20 +5243,20 @@ func (c *Client) CustomDictionariesCreate(customDictionary CustomDictionary) (Cu // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CustomDictionary("courier-profiles") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.CustomDictionary.Name) +// log.Printf("%v", data.CustomDictionary.Name) // } func (c *Client) CustomDictionary(code string) (CustomDictionaryResponse, int, error) { var resp CustomDictionaryResponse @@ -5281,9 +5281,9 @@ func (c *Client) CustomDictionary(code string) (CustomDictionaryResponse, int, e // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.CustomDictionaryEdit(v5.CustomDictionary{ +// data, status, err := client.CustomDictionaryEdit(retailcrm.CustomDictionary{ // Name: "Courier profiles", // Code: "courier-profiles", // Elements: []Element{ @@ -5337,7 +5337,7 @@ func (c *Client) CustomDictionaryEdit(customDictionary CustomDictionary) (Custom // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CustomFieldsCreate(CustomFields{ // Name: "First order", @@ -5348,15 +5348,15 @@ func (c *Client) CustomDictionaryEdit(customDictionary CustomDictionary) (Custom // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.Code) +// log.Printf("%v", data.Code) // } func (c *Client) CustomFieldsCreate(customFields CustomFields) (CustomResponse, int, error) { var resp CustomResponse @@ -5387,20 +5387,20 @@ func (c *Client) CustomFieldsCreate(customFields CustomFields) (CustomResponse, // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CustomField("order", "first-order") // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.CustomField) +// log.Printf("%v", data.CustomField) // } func (c *Client) CustomField(entity, code string) (CustomFieldResponse, int, error) { var resp CustomFieldResponse @@ -5425,7 +5425,7 @@ func (c *Client) CustomField(entity, code string) (CustomFieldResponse, int, err // // Example: // -// var client = v5.New("https://demo.url", "09jIJ") +// var client = retailcrm.New("https://demo.url", "09jIJ") // // data, status, err := client.CustomFieldEdit(CustomFields{ // Code: "first-order", @@ -5434,15 +5434,15 @@ func (c *Client) CustomField(entity, code string) (CustomFieldResponse, int, err // }) // // if err != nil { -// fmt.Printf("%v", err.Error()) -// } +// if apiErr, ok := retailcrm.AsAPIError(err); ok { +// log.Fatalf("http status: %d, %s", status, apiErr.String()) +// } // -// if status >= http.StatusBadRequest { -// fmt.Printf("%v", err.ApiError()) +// log.Fatalf("http status: %d, error: %s", status, err) // } // // If data.Success == true { -// fmt.Printf("%v", data.Code) +// log.Printf("%v", data.Code) // } func (c *Client) CustomFieldEdit(customFields CustomFields) (CustomResponse, int, error) { var resp CustomResponse