cURL
curl --request POST \ --url https://app.recallio.ai/api/Memory/recall-topics \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "userId": "user_123", "projectId": "project_abc" } '
{ "topics": [ { "name": "<string>", "subTopics": [ { "name": "<string>", "value": "<string>" } ] } ], "users": [ "<string>" ] }
Retrieve all available topics for provided user. This is a list of all topics that where extracted from memories for all projects or a specific project.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
User identifier to search memories for
1
"user_123"
Project identifier to search memories within
"project_abc"
OK
Show child attributes