## Create `ExpressCreateResponse express().create(ExpressCreateParamsparams, RequestOptionsrequestOptions = RequestOptions.none())` **post** `/v1/express` Creates a new customer with a unique identifier and name. Customers can be used to group and manage users, studies, and access permissions across the Avara platform. ### Parameters - `ExpressCreateParams params` - `String expressCustomerName` Name of the Express customer to create - `Optional metadata` Custom key-value metadata for the Express customer. Maximum 50 pairs ### Returns - `class ExpressCreateResponse:` An Express customer entity that groups users and studies - `Optional createdAt` Timestamp when the Express customer was created - `String expressCustomerId` Unique Express customer identifier. Format: cus_{32-hex-chars} - `String expressCustomerName` Name of the Express customer - `boolean isActive` Whether the Express customer is currently active - `Optional updatedAt` Timestamp when the Express customer was last updated - `long userCount` Number of users currently in this Express customer - `Optional createdByApiKeyId` UUID of the API key used to create this Express customer, for audit tracking - `Optional createdByUserId` User ID who created this Express customer via dashboard, null if created via API key - `Optional metadata` Custom key-value metadata for the Express customer. Maximum 50 pairs, keys up to 100 chars, values up to 1000 chars ### Example ```java package com.avara.example; import com.avara.client.AvaraClient; import com.avara.client.okhttp.AvaraOkHttpClient; import com.avara.models.express.ExpressCreateParams; import com.avara.models.express.ExpressCreateResponse; public final class Main { private Main() {} public static void main(String[] args) { AvaraClient client = AvaraOkHttpClient.fromEnv(); ExpressCreateParams params = ExpressCreateParams.builder() .expressCustomerName("City Medical Center - Radiology Department") .build(); ExpressCreateResponse express = client.express().create(params); } } ```