diff --git a/cmd/authconfigs/patch.go b/cmd/authconfigs/patch.go index 4afff449..ffb9bfa3 100644 --- a/cmd/authconfigs/patch.go +++ b/cmd/authconfigs/patch.go @@ -60,7 +60,7 @@ func init() { var name string PatchCmd.Flags().StringVarP(&name, "name", "n", - "", "Connection name") + "", "AuthConfig name") PatchCmd.Flags().StringVarP(&authConfigFile, "file", "f", "", "AuthConfig details JSON file path") PatchCmd.Flags().StringArrayVarP(&updateMask, "update-mask", "", diff --git a/internal/client/authconfigs/authconfigs.go b/internal/client/authconfigs/authconfigs.go index 2a5511e0..fc9ec791 100644 --- a/internal/client/authconfigs/authconfigs.go +++ b/internal/client/authconfigs/authconfigs.go @@ -268,7 +268,7 @@ func Patch(name string, content []byte, updateMask []string) (respBody []byte, e return nil, err } - u, _ := url.Parse(apiclient.GetBaseConnectorURL()) + u, _ := url.Parse(apiclient.GetBaseIntegrationURL()) if len(updateMask) != 0 { updates := strings.Join(updateMask, ",")