Open
Description
New Feature Summary
Some APIs require keys and other sensitive information in the GET endpoint; Data Masking rules should be applied to protect this information:
In LogEntryEventBuilder.setHttpRequestDetails:
Instead of
this.logEntryEvent.HttpRequestEndpoint__c = request.getEndpoint();
Do:
this.logEntryEvent.HttpRequestEndpoint__c = applyDataMaskRules(this.userSettings.IsDataMaskingEnabled__c, request.getEndpoint());
Activity