diff --git a/backend/plugins/opsgenie/api/connection_api.go b/backend/plugins/opsgenie/api/connection_api.go index c2844efaa1c..a56118cc73d 100644 --- a/backend/plugins/opsgenie/api/connection_api.go +++ b/backend/plugins/opsgenie/api/connection_api.go @@ -48,7 +48,7 @@ func testOpsgenieConn(ctx context.Context, connection models.OpsgenieConn) (*plu } if response.StatusCode == http.StatusForbidden { - return nil, errors.HttpStatus(http.StatusForbidden).New("API Key need 'Read' and 'Configuration access' Access rights") + return nil, errors.HttpStatus(http.StatusForbidden).New("API Key needs 'Read', 'Create/Update', and 'Configuration Access' access rights") } if response.StatusCode == http.StatusOK || response.StatusCode == http.StatusAccepted {