diff --git a/client.go b/client.go index 2c17d63..d581733 100644 --- a/client.go +++ b/client.go @@ -2156,8 +2156,8 @@ func (c *Client) IntegrationModuleEdit(integrationModule IntegrationModule) ( // // var client = retailcrm.New("https://demo.url", "09jIJ") // -// data, status, err := client.UpdateScopes("moysklad3", retailcrm.UpdateScopesRequest{ -// Requires: retailcrm.ScopesRequired{Scopes: []string{"scope1", "scope2"}}}, +// data, status, err := client.UpdateScopes("moysklad3", retailcrm.ScopesRequired{ +// Scopes: []string{"scope1", "scope2"}, // }) // // if err.Error() != "" { @@ -2179,8 +2179,7 @@ func (c *Client) UpdateScopes(code string, request ScopesRequired) (UpdateScopes "requires": {string(updateJSON)}, } - data, status, err := c.PostRequest( - fmt.Sprintf("/integration-modules/%s/update-scopes", code), p) + data, status, err := c.PostRequest(fmt.Sprintf("/integration-modules/%s/update-scopes", code), p) if err != nil { return resp, status, err } diff --git a/client_test.go b/client_test.go index ffb0424..74631ca 100644 --- a/client_test.go +++ b/client_test.go @@ -6573,6 +6573,7 @@ func TestClient_UpdateScopes(t *testing.T) { defer gock.Off() request := ScopesRequired{Scopes: []string{"scope1", "scope2"}} + jr, _ := json.Marshal(&request) gock.New(crmURL). @@ -6605,6 +6606,7 @@ func TestClient_UpdateScopes_Fail(t *testing.T) { defer gock.Off() request := ScopesRequired{Scopes: []string{"scope1", "scope2"}} + jr, _ := json.Marshal(&request) gock.New(crmURL). diff --git a/types.go b/types.go index d4ab827..0a08c43 100644 --- a/types.go +++ b/types.go @@ -977,7 +977,7 @@ type IntegrationModule struct { } type ScopesRequired struct { - Scopes []string + Scopes []string `json:"scopes"` } // Integrations type.