Get hands-on experience with 20+ free Google Cloud products and $300 in free credit for new customers.

Data masking request/response AND service callout request/response

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:

  1. Full request/response - not parts of request/response but the whole thing.
  2. Service callout request/response - not parts of request/response but the whole thing.

Is these scenarios supported by edge and if yes, how would the API call to set it up look like?

Cheers

Ozan

Solved Solved
0 7 1,196
1 ACCEPTED SOLUTION

adas
New Member

@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.

View solution in original post

7 REPLIES 7