## Set Name `v1.customers.set_name(CustomerSetNameParams**kwargs) -> CustomerSetNameResponse` **post** `/v1/customers/{customer_id}/setName` Updates the specified customer's name. ### Parameters - **customer\_id:** `str` - **name:** `str` The new name for the customer. This will be truncated to 160 characters if the provided name is longer. ### Returns - `class CustomerSetNameResponse` - **data:** `Customer` ### Example ```python from metronome import Metronome client = Metronome( bearer_token="My Bearer Token", ) response = client.v1.customers.set_name( customer_id="d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc", name="Example, Inc.", ) print(response.data) ```