Skip to content

Instantly share code, notes, and snippets.

@gusLopezC
Created December 21, 2020 17:18
Show Gist options
  • Save gusLopezC/06c0cf62bd48e6703a0a8cfa2442ab69 to your computer and use it in GitHub Desktop.
Save gusLopezC/06c0cf62bd48e6703a0a8cfa2442ab69 to your computer and use it in GitHub Desktop.
$customer = array(
'name' => 'Juan',
'last_name' => 'Vazquez Juarez',
'phone_number' => '4423456723',
'email' => 'juan.vazquez@empresa.com.mx');
$chargeRequest = array(
"method" : "card",
'amount' => 100,
'description' => 'Cargo terminal virtual a mi merchant',
'customer' => $customer,
'send_email' => false,
'confirm' => false,
'redirect_url' => 'http://www.openpay.mx/index.html')
;
$customer = $openpay->customers->add($customer);
var_dump($customer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment