## Remove `UserRemoveResponse express().users().remove(UserRemoveParamsparams, RequestOptionsrequestOptions = RequestOptions.none())` **delete** `/v1/express/{expressCustomerId}/users` Removes a user's association with a customer, revoking their access to customer-specific resources. The user account remains active but is no longer linked to this customer. ### Parameters - `UserRemoveParams params` - `Optional expressCustomerId` Unique Express customer identifier. Format: cus_{32-hex-chars} - `String userId` User ID to remove from the Express customer. Format: usr_{32-hex-chars} ### Returns - `class UserRemoveResponse:` Standard success response with optional message - `boolean success` - `Optional message` ### Example ```java package com.avara.example; import com.avara.client.AvaraClient; import com.avara.client.okhttp.AvaraOkHttpClient; import com.avara.models.express.users.UserRemoveParams; import com.avara.models.express.users.UserRemoveResponse; public final class Main { private Main() {} public static void main(String[] args) { AvaraClient client = AvaraOkHttpClient.fromEnv(); UserRemoveParams params = UserRemoveParams.builder() .expressCustomerId("cus_1234567890abcdef1234567890abcdef") .userId("usr_1234567890abcdef1234567890abcdef") .build(); UserRemoveResponse user = client.express().users().remove(params); } } ```