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 PUT \ --url https://api.recallrai.com/api/v1/users/{user_id} \ --header 'Content-Type: application/json' \ --header 'X-Recallr-Api-Key: <x-recallr-api-key>' \ --header 'X-Recallr-Project-Id: <x-recallr-project-id>' \ --data ' { "new_user_id": "<string>", "new_metadata": {} } '
{ "user": { "user_id": "<string>", "metadata": {}, "created_at": "2023-11-07T05:31:56Z", "last_active_at": "2023-11-07T05:31:56Z" } }
Update user metadata or change user identifier.
Modify user attributes including custom metadata and the user_id itself. When changing the user_id, the new ID must not already exist in the project.
Returns updated user object with new values.
User updated successfully
Show child attributes
Was this page helpful?