Skip to main content
DELETE
/
api
/
Memory
/
delete
Filter the memories by user or project or team and delete them
curl --request DELETE \
  --url https://app.recallio.ai/api/Memory/delete \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "scope": "<string>",
  "userId": "<string>",
  "projectId": "<string>"
}
'
{
  "error": "\"Invalid scope type. Must be 'user', 'project', or 'team'.\""
}

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"

Body

scope
string
required
Minimum string length: 1
userId
string | null
projectId
string | null

Response

OK