## Set Name `client.v1.customers.setName(CustomerSetNameParamsparams, RequestOptionsoptions?): CustomerSetNameResponse` **post** `/v1/customers/{customer_id}/setName` Updates the specified customer's name. ### Parameters - **params:** `CustomerSetNameParams` - **customer\_id:** `string` Path param: - **name:** `string` Body param: The new name for the customer. This will be truncated to 160 characters if the provided name is longer. ### Returns - `CustomerSetNameResponse` - **data:** `Customer` ### Example ```node import Metronome from '@metronome/sdk'; const client = new Metronome({ bearerToken: 'My Bearer Token', }); const response = await client.v1.customers.setName({ customer_id: 'd7abd0cd-4ae9-4db7-8676-e986a4ebd8dc', name: 'Example, Inc.', }); console.log(response.data); ```