Data Sanitization
Sanitizing sensitive information in payloads, responses, and headers
Overview
The Zipy Flutter SDK includes powerful data sanitization features to protect sensitive information in your network requests and responses. You can configure what to sanitize, how deep to scrub nested objects, and which keys or headers to target.
Default Behavior
Sanitizes both payloads and responses
Sanitizes up to 3 levels deep in nested objects
Scrubs the following sensitive keys
Sanitizes the following headers
The scrubbing level determines how deep the sanitization process goes into nested objects.
To modify scrubbing level or add your own keys contact us support@zipy.ai
How sanitization works
When a key matches one in the scrubbing list (case-insensitive), its value is replaced with "xxxx"
For headers in the sanitization list, their values are replaced with "xxxx"
Both request payloads and responses are sanitized if enabled
Example
Original Request:
Sanitized Request:
Last updated