mirror of
https://github.com/retailcrm/api-client-go.git
synced 2025-04-03 13:13:37 +03:00
init godoc
This commit is contained in:
parent
53d9ee4ae9
commit
1201c861ff
1 changed files with 14 additions and 1 deletions
15
v5/client.go
15
v5/client.go
|
@ -140,7 +140,20 @@ func fillSite(p *url.Values, site []string) {
|
|||
}
|
||||
}
|
||||
|
||||
// ApiVersions get available API versions
|
||||
// ApiVersions get all available API versions for exact account
|
||||
// Example:
|
||||
// var client = v5.New("https://demo.retailcrm.pro", "09jIJ09j0JKhgyfvyuUIKhiugF")
|
||||
// data, status, err := client.ApiVersions()
|
||||
// if err.ErrorMsg != "" {
|
||||
// fmt.Printf("%v", err.ErrorMsg)
|
||||
// }
|
||||
// if status >= http.StatusBadRequest {
|
||||
// fmt.Printf("%v", err.ErrorMsg)
|
||||
// }
|
||||
//
|
||||
// for _, value := range data.versions {
|
||||
// fmt.Printf("%v\n", value)
|
||||
// }
|
||||
func (c *Client) ApiVersions() (*VersionResponse, int, ErrorResponse) {
|
||||
var resp VersionResponse
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue