Hi community
I've looked at other questions/answers about this topic but most of them are too generic or inconclusive.
Has anyone successfully implemented data masking for:
Is these scenarios supported by edge and if yes, how would the API call to set it up look like?
Cheers
Ozan
Solved! Go to Solution.
@Ozan Seymen For complete request/response masking try doing this:
POST https://api.enterprise.apigee.com/v1/organizations/${org}/maskconfigs <MaskDataConfiguration name="default"> <JSONPathsRequest> <JSONPathRequest>$..*</JSONPathRequest> </JSONPathsRequest> <JSONPathsResponse> <JSONPathResponse>$..*</JSONPathResponse> </JSONPathsResponse> </MaskDataConfiguration>
The same can be done at the env level or proxy level as well, if you want to mask data for a specific env or specific api proxy.