/home/techb158/immovalet.com/vendor/mollie/mollie-api-php/examples/customers
NameSizeModeActions
create-customer-first-payment.php23500644editdlrm
create-customer-payment.php20130644editdlrm
create-customer-recurring-payment.php20860644editdlrm
create-customer.php7790644editdlrm
delete-customer.php3980644editdlrm
list-customer-payments.php19190644editdlrm
update-customer.php8550644editdlrm
Edit: /home/techb158/immovalet.com/vendor/mollie/mollie-api-php/examples/customers/update-customer.php (855B)
customers->get("cst_cUe8HjeBuz"); /** * Customer fields that can be updated. * * @See https://docs.mollie.com/reference/v2/customers-api/update-customer */ $customer->name = "Luke Sky"; $customer->email = "luke@example.org"; $customer->locale = "en_US"; $customer->metadata->isJedi = true; $customer->update(); echo "

Customer updated: " . htmlspecialchars($customer->name) . "

"; } catch (\Mollie\Api\Exceptions\ApiException $e) { echo "API call failed: " . htmlspecialchars($e->getMessage()); }