Create User
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 '
{
"custom_user_id": "<string>",
"metadata": {}
}
'{
"user": {
"custom_user_id": "<string>",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"last_active_at": "2023-11-07T05:31:56Z"
}
}Users
Create User
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 custom_user_id that you provide from your application.
Body Parameters:
custom_user_id(str): Your unique identifier for this usermetadata(Dict[str, Any]): Optional JSON metadata to attach (e.g., name, email, preferences)
Returns:
user(UserInfo): Created user object with custom_user_id, metadata, and timestamps
POST
/
api
/
v1
/
users
Create User
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 '
{
"custom_user_id": "<string>",
"metadata": {}
}
'{
"user": {
"custom_user_id": "<string>",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"last_active_at": "2023-11-07T05:31:56Z"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.recallrai.com/llms.txt
Use this file to discover all available pages before exploring further.
Was this page helpful?
⌘I