v1
latestOpenAPI 3.1.02026-07-2676188241.3 KBUsers
Update a user
patch/projects/{projectId}/customers/{customerId}/users/{userId}
Path parameters
projectIdstring required
Example:consoleproject
Unique identifier of your project in the Corti API Console.
To find it, open your project at console.corti.app, go to Settings, and copy the value from the Project ID field.
customerIdstring required
Example:contosohospital
The unique identifier for a Customer
userIdstring uuid required
Example:123e4567-e89b-12d3-a456-426614174000
The ID of the user
Request body
Example request
{
"firstName": "John",
"lastName": "Doe",
"enabled": true,
"password": "My$ecureP@ssw0rd123!"
}Response
User updated successfully
Example response
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "user@example.com",
"firstName": "John",
"lastName": "Doe",
"emailVerified": true,
"enabled": true,
"createdAt": "2023-10-01T12:00:00Z"
}