curl --request GET \
--url https://api.getcargo.io/v1/ai/memories/list \
--header 'Authorization: Bearer <token>'{
"memories": [
{
"mem0Id": "<string>",
"content": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"scope": "<string>",
"workspaceUuid": "<string>"
}
]
}List all AI memories. Query params: scope (workspace|user|agent), agentUuid (required when scope=agent)
curl --request GET \
--url https://api.getcargo.io/v1/ai/memories/list \
--header 'Authorization: Bearer <token>'{
"memories": [
{
"mem0Id": "<string>",
"content": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>",
"scope": "<string>",
"workspaceUuid": "<string>"
}
]
}Was this page helpful?