Authorizations
Enter your API key
Body
application/json
Response
Operation successful
The response is of type object
.
curl --request PATCH \
--url https://platform.thena.ai/v1/users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "John Doe",
"avatarUrl": "https://example.com/avatar.png",
"userType": "USER"
}'
{
"id": "<string>",
"name": "<string>",
"email": "<string>",
"userType": "<string>",
"status": "<string>",
"isActive": true,
"lastLoginAt": "<string>",
"avatarUrl": "<string>",
"timezone": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
curl --request PATCH \
--url https://platform.thena.ai/v1/users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"name": "John Doe",
"avatarUrl": "https://example.com/avatar.png",
"userType": "USER"
}'
{
"id": "<string>",
"name": "<string>",
"email": "<string>",
"userType": "<string>",
"status": "<string>",
"isActive": true,
"lastLoginAt": "<string>",
"avatarUrl": "<string>",
"timezone": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
Enter your API key
Operation successful
The response is of type object
.