## Retrieve `client.V1.Customers.Get(ctx, query) (*V1CustomerGetResponse, error)` **get** `/v1/customers/{customer_id}` Get a customer by Metronome ID. ### Parameters - **query:** `V1CustomerGetParams` - **CustomerID:** `param.Field[string]` ### Returns - Not supported - **Data:** `CustomerDetail` ### 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"), ) customer, err := client.V1.Customers.Get(context.TODO(), metronome.V1CustomerGetParams{ CustomerID: metronome.F("d7abd0cd-4ae9-4db7-8676-e986a4ebd8dc"), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", customer.Data) } ```