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
| Field | Type | Required | Notes |
|---|---|---|---|
ids | uuid[] | yes | Max 500 |
Response
{
"deleted": 2,
"missing": ["01HQC…"]
}
Side effects
- One
memory.deleterow per id added toaudit_log. - One
memory.deletedwebhook fires per successfully deleted id. - Counts as one slot against the per-token 60/min rate limit.