# Create a new customer Creates a new customer Endpoint: POST /customers Version: 1.0.0 Security: ApiKeyAuth ## 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 201 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 500 fields