## Set Name `client.V1.Customers.SetName(ctx, params) (*V1CustomerSetNameResponse, error)` **post** `/v1/customers/{customer_id}/setName` Updates the specified customer's name. ### Parameters - **params:** `V1CustomerSetNameParams` - **CustomerID:** `param.Field[string]` Path param: - **Name:** `param.Field[string]` Body param: The new name for the customer. This will be truncated to 160 characters if the provided name is longer. ### Returns - Not supported - **Data:** `Customer` ### Example ```go package main import ( "context" "fmt" "github.com/Metronome-Industries/metronome-go" "github.com/Metronome-Industries/metronome-go/option" ) func main() { client := metronome.NewClient( option.WithBearerToken("My Bearer Token"), ) response, err := client.V1.Customers.SetName(context.TODO(), metronome.V1CustomerSetNameParams{ CustomerID: metronome.F("d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc"), Name: metronome.F("Example, Inc."), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", response.Data) } ```