We're working on a new version of our documentation - it will be out soon! In the meantime, you can use our SDK READMEs on GitHub for usage instructions.
cURL
curl --request POST \ --url https://api.recallrai.com/api/v1/users \ --header 'Content-Type: application/json' \ --header 'X-Recallr-Api-Key: <x-recallr-api-key>' \ --header 'X-Recallr-Project-Id: <x-recallr-project-id>' \ --data ' { "user_id": "<string>", "metadata": {} } '
{ "user": { "user_id": "<string>", "metadata": {}, "created_at": "2023-11-07T05:31:56Z", "last_active_at": "2023-11-07T05:31:56Z" } }
Create a new user in your project.
Register a new user to start tracking their memories and sessions. Each user is identified by a unique user_id that you provide from your application.
Returns the created user object with timestamps.
User created successfully
Show child attributes
Was this page helpful?