curl --request DELETE \
--url http://localhost:3000/api/memory/{agentId}/memories
{
"success": true,
"data": {
"deleted": 123,
"message": "<string>"
}
}
Delete all memories for a specific agent
curl --request DELETE \
--url http://localhost:3000/api/memory/{agentId}/memories
{
"success": true,
"data": {
"deleted": 123,
"message": "<string>"
}
}
ID of the agent
Memories deleted successfully
The response is of type object
.
Was this page helpful?