GDPR right-to-be-forgotten
A complete /v1/forget flow including audit-trail patterns and what doesn't get deleted.
TL;DR
curl -X POST https://api.millimetric.ai/v1/forget \
-H "Authorization: Bearer $SK_KEY" \
-H "Content-Type: application/json" \
-d '{ "user_id": "user_42" }'Step 1 — verify the request
async function forgetUser(userId: string, requestedBy: string) {
// 1. Confirm the requester is who they say they are (your auth).
// 2. Log the request in your own audit table.
await db.insert("forget_requests", {
user_id: userId,
requested_by: requestedBy,
requested_at: new Date()
});
// 3. Then, and only then, call Millimetric.
}Step 2 — call /v1/forget
Step 3 — also delete from related systems
What gets deleted in Millimetric
What does not get deleted
Thing
Why
If you also need to forget anonymous events
Audit trail — the part Millimetric doesn't do for you
Worked example
Errors
See also
Last updated
Was this helpful?