> ## Documentation Index
> Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Forgetting

> Forget everything Agent Memory holds about one profile.

Anything that stores what a person said needs a way to unsay it — a customer who asks to be forgotten, a profile created against the wrong id. Agent Memory answers that with **forget**.

## Forget a Profile

`DELETE /namespaces/{ns}/profiles/{profile_id}` forgets everything held about one profile — every memory, and the profile's summary with it.

```bash theme={null}
curl -X DELETE "https://api.telnyx.com/v2/ai/memory/namespaces/default/profiles/caller:+13128675309" \
  -H "Authorization: Bearer $TELNYX_API_KEY"
```

This is the route that answers a right-to-erasure request. A `2xx` means none of that profile's memories remain, and there is no undo.

<Warning>
  This endpoint **takes no parameters** and always deletes the whole profile. It does not accept a `session_id` — a stray one is ignored, not refused, so a request meant to forget one session would erase the entire profile. To forget one session, use its source (below), never this route.
</Warning>

## Forget One Session

A session is forgotten through its **source**, on the [Sources](/docs/agent-memory/sources#forget-one-source) page — `DELETE …/profiles/{id}/sources/{source_id}`. Use the `source_id` from the ingest `202`, or look it up first with [`GET …/sources?session_id=`](/docs/agent-memory/sources#find-one-sessions-source). This forgets that one session and the memories derived from it, leaving the rest of the profile intact.

<Note>
  You can forget a whole profile (here) or one session, by [its source](/docs/agent-memory/sources#forget-one-source). Forgetting a single **memory** is not yet available.
</Note>

## Related

* [Sources](/docs/agent-memory/sources) -- forget one session by deleting its source
* [Writing memories](/docs/agent-memory/writing) -- how memories get in
* [Recalling memories](/docs/agent-memory/recall) -- reading a profile whole
