# Update customer profile Update customer profile settings. Note: Webhook endpoints are now managed via the /api/v1/customer/webhooks endpoints. See the Webhooks section for creating and managing multiple webhook endpoints. Endpoint: PUT /api/v1/customer/profile Version: 1.0.0 Security: ApiKeyAuth ## Request fields (application/json): - `name` (string) Customer account name Example: "Acme Corp" ## Response 200 fields (application/json): - `customer` (object) - `customer.id` (string) - `customer.name` (string) - `customer.email` (string) - `customer.status` (string) Enum: "active", "suspended", "pending" - `customer.tracking_enabled` (boolean) - `customer.click_tracking_enabled` (boolean) - `customer.open_tracking_enabled` (boolean) - `customer.created_at` (string) ## Response 400 fields (application/json): - `error` (string) Error code or message ## Response 401 fields (application/json): - `error` (string) Error code or message ## Response 500 fields (application/json): - `error` (string) Error code or message