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

# Delete Memory

> Delete a memory from a profile

## Overview

Removes a specific memory from a user profile.

## Path Parameters

<ParamField path="id" type="string" required>
  Profile ID
</ParamField>

<ParamField path="memoryId" type="string" required>
  Memory ID to delete
</ParamField>

## Response

<ResponseExample>
  ```json theme={null}
  {
    "success": true
  }
  ```
</ResponseExample>

## Example

```bash theme={null}
curl -X DELETE https://api.yourserver.com/api/profiles/user-123/memories/mem-125 \
  -H "Authorization: Bearer gp_your_key"
```
