Endpoint
(your account, user) → Subject mapping is dropped so the identity becomes unreachable.
An erase never creates the very Subject it is erasing: resolution looks up the existing mapping only. Passing a
user your account has never used returns 404 — nothing is minted.What gets erased
One call covers the whole/v1 surface for that Subject:
- Structured records — everything written via
POST /v1/dataor stored extractions (POST /v1/extractwithstore=true), regardless ofretention. - Files — everything uploaded via
POST /v1/files. - Conversations — stored responses and sessions from the Agent API.
- The identity mapping — the Subject itself becomes unreachable. A later request that passes the same
usermints a fresh, empty Subject with no connection to the erased one.
DELETE /v1/data (records), DELETE /v1/files/{key} (one file), DELETE /v1/responses/{id} (one stored conversation), DELETE /v1/sessions/{id} (one session’s scope). See Compliance for the full user-rights picture.