v1
latestOpenAPI 3.1.02026-07-2676188241.3 KBUsers
List users for a customer
get/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
Query parameters
pageinteger
Page number for pagination
pageSizeinteger
Number of users per page
Response
List of users retrieved successfully
Example response
{
"users": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"email": "user@example.com",
"firstName": "John",
"lastName": "Doe",
"emailVerified": true,
"enabled": true,
"createdAt": "2023-10-01T12:00:00Z"
}
]
}