# Update customer details Update details for a specific customer Endpoint: PATCH /customers/{customer_id} Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `customer_id` (string, required) The unique identifier for the customer Example: "cust_3bbb4fe7-4c25-45b2-a363-c8db8c0084b9" ## Request fields (application/json): - `first_name` (string) - `last_name` (string) - `email` (string) - `address` (object) - `address.address_line_1` (string) Example: "123 Main St" - `address.address_line_2` (string) Example: "Apt 101" - `address.city` (string) Example: "San Francisco" - `address.state` (string) Example: "CA" - `address.postal_code` (string) Example: "94107" - `address.country` (string) Example: "US" ## Response 200 fields (application/json): - `id` (string) Example: "cust_1ks881js771j" - `first_name` (string) - `last_name` (string) - `email` (string) - `address` (object) - `address.address_line_1` (string) Example: "123 Main St" - `address.address_line_2` (string) Example: "Apt 101" - `address.city` (string) Example: "San Francisco" - `address.state` (string) Example: "CA" - `address.postal_code` (string) Example: "94107" - `address.country` (string) Example: "US" ## Response 400 fields (application/json): - `message` (string, required) - `errors` (object, required) ## Response 401 fields ## Response 404 fields ## Response 500 fields