curl --request PUT \
--url https://api.tensormesh.ai/v1/users/{userId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "<string>",
"lastName": "<string>",
"displayName": "<string>",
"company": "<string>"
}
'{
"empty": {}
}Updates an existing user profile.
curl --request PUT \
--url https://api.tensormesh.ai/v1/users/{userId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"firstName": "<string>",
"lastName": "<string>",
"displayName": "<string>",
"company": "<string>"
}
'{
"empty": {}
}Documentation Index
Fetch the complete documentation index at: https://docs.tensormesh.ai/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication using an access token. Format: Bearer <access_token>
The unique ID of the user to update.
A successful response.
UpdateUserProfileResponse is the response for updating a user profile.
Empty response.
Was this page helpful?