| Current Path : /home/zada/public_html/vendor/mercadopago/dx-php/samples/customer-and-cards/customer/ |
| Current File : /home/zada/public_html/vendor/mercadopago/dx-php/samples/customer-and-cards/customer/create.php |
<?php
require_once dirname(__FILE__).'/../../index.php';
$customer = new MercadoPago\Customer();
$customer->email = "your.payer@email.com";
$customer->save();
echo "Customer ID: " . $customer->id;
?>