Data export and account deletion
AttuneLogic supports self-service export and account closure for signed-in users via the API (used by the web and mobile apps).
Export your dataโ
- HTTP:
GET /api/v1/account/export(path is/export, not/me/export) - Auth: Bearer token (same session as the app).
- Response: JSON attachment with a snapshot of your user record. Sensitive fields such as password hashes are omitted.
Use this when your organizationโs security or privacy review requires a portable copy of profile data.
Delete (disable) your accountโ
- HTTP:
DELETE /api/v1/account/me - Auth: Bearer token.
- Body:
{ "confirm": "DELETE" }
This soft-disables the account: access is revoked, credentials are cleared, and the email is anonymized so the address can be reused elsewhere. Restoration within a limited window may be possible by contacting support โ not guaranteed.
Ops note: Super-admin audit log entries may be written for compliance when self-delete is invoked.