createCustomerAddress
createCustomerAddressAdd a new address to an existing customer record, specifying details like street, city, and country. Set as default billing or shipping address if needed.
Instructions
Add a new address to a customer.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| customerId | Yes | The unique identifier of the customer. | |
| line1 | Yes | Address line 1. | |
| line2 | No | Address line 2. | |
| city | No | City. | |
| state | No | State/province. | |
| zipCode | No | ZIP/postal code. | |
| country | No | Country name. | |
| country_code | No | ISO country code (e.g., 'US', 'GB'). | |
| line3 | No | Address line 3. | |
| is_default_billing | No | Set as default billing address. Default: false. | |
| is_default_shipping | No | Set as default shipping address. Default: false. | |
| __userContext | No | Internal user context for multi-tenant authentication and approval workflow |