v1

latestOpenAPI 3.1.02026-07-2676188241.3 KB
Customers

Create a new customer

post/projects/{projectId}/customers

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.

Request body

displayNamestring required

Human-readable display name for the customer

tenantNamestring

The tenant identifier used for multi-tenancy and resource isolation. If not provided, a default value will be used

region'eu' | 'us'

Region for the customer's resources.

customerIdstring required

Unique identifier for the customer

isNfrboolean

Flag indicating if this is a Not-For-Resale (NFR) customer account.

Example request

{
  "displayName": "admin",
  "tenantName": "base",
  "region": "eu",
  "customerId": "contosohospital"
}

Response

Customer created successfully

displayNamestring required

Human-readable display name for the customer

tenantNamestring required

The tenant identifier used for multi-tenancy and resource isolation.

region'eu' | 'us' required

Region for the customer's resources

customerIdstring required

Unique identifier for the customer

isNfrboolean

Flag indicating if this is a Not-For-Resale (NFR) customer account

createdAtstring date-time

Timestamp when the customer was created

Example response

{
  "displayName": "admin",
  "tenantName": "base",
  "customerId": "contosohospital",
  "createdAt": "2023-10-01T12:00:00Z"
}