v1
latestOpenAPI 3.1.02026-07-2676188241.3 KBUsers
Create a new user and add it to the customer
post/projects/{projectId}/customers/{customerId}/users
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
Request body
Example request
{
"email": "user@example.com",
"firstName": "John",
"lastName": "Doe",
"password": "My$ecureP@ssw0rd123!"
}Response
User created 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"
}