Security
An overview of JigsawStack security features and practices.
Data protection
1. Data at rest
All sensitive data are encrypted at rest. Sensitive collections and tables also use row-level encryption.
2. Data in transit
JigsawStack uses TLS 1.3 or higher everywhere data is transmitted over potentially insecure networks.
3. Data backup
JigsawStack backs-up all production data using a point-in-time approach. Backups are persisted for 30 days, and are globally replicated for resiliency against regional disasters.
Prevent logging API requests
By default, our servers logged every request payload. Attach the header parameter x-jigsaw-no-request-log
to control how requests payload are handled. If set to true
, request payload will not be logged (stored).
Javascript SDK
To disable request logging in the JavaScript SDK, you can pass the disableRequestLogging
option during initialization:
Python SDK
In the Python SDK, you can similarly disable request logging by passing the disable_request_logging
argument when creating a JigsawStack instance:
API
When using the raw API, include the x-jigsaw-no-request-log
header in your request to control logging behavior
Was this page helpful?