Create customer
amberflo_create_customerWRITE: create/register a new customer in Amberflo (id + name required; optional email, enabled flag, and traits). Optionally auto-create the customer in Stripe. API: POST /customers/.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| traits | No | Arbitrary string traits (key/value metadata). | |
| enabled | No | Whether the customer is enabled. | |
| customer_id | Yes | Unique customerId to assign (your identifier for the customer). | |
| customer_name | Yes | Human-readable customer name. | |
| customer_email | No | Customer email address. | |
| create_in_stripe | No | When true, also auto-create this customer in Stripe (adds ?autoCreateCustomerInStripe=true). |