Session Sandbox
Export, import, and reset operations for identity session overlays. All mutations persist in your isolated session overlay.
Export Session Sandbox Snapshot JSON
Serializes all session sandbox overlay records (creates, updates, deletes) into a downloadable JSON snapshot file for backups or team sharing.
Request Endpoint
GEThttps://playground.nileslabs.com/api/v1/session/export
1
{
2
"version": "1.0",
3
"identityId": "550e8400-e29b-41d4-a716-446655440000",
4
"stats": {
5
"totalRecords": 2,
6
"creates": 1,
7
"updates": 1,
8
"deletes": 0
9
}
10
}
Purge Session Sandbox Overlay
Purges all created, updated, and deleted overlay mutations for your session identity, resetting your view to clean baseline global data.
Request Endpoint
DELETEhttps://playground.nileslabs.com/api/v1/session/reset
1
{
2
"message": "Session sandbox overlay purged successfully.",
3
"purgedRecords": 3
4
}