DELETE · Batch delete memories

Delete up to 500 memories in one call. Reports which ids were missing.

DELETE /api/memories/batch

Delete up to 500 memories in a single call. Ids that don't exist (or belong to another org) are reported in missing[] rather than failing the whole batch.

curl -X DELETE https://www.mnueron.com/api/memories/batch \
  -H "Authorization: Bearer $MNUERON_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "ids": ["01HQA…", "01HQB…", "01HQC…"]
  }'

Body

FieldTypeRequiredNotes
idsuuid[]yesMax 500

Response

{
  "deleted": 2,
  "missing": ["01HQC…"]
}

Side effects

  • One memory.delete row per id added to audit_log.
  • One memory.deleted webhook fires per successfully deleted id.
  • Counts as one slot against the per-token 60/min rate limit.
Last updated 2026-05-24edit