06-create-customer.php 825 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * Ejemplo 6
  4. * Como crear un customer usando Culqi PHP.
  5. */
  6. try {
  7. // Usando Composer (o puedes incluir las dependencias manualmente)
  8. require '../vendor/autoload.php';
  9. // Configurar tu API Key y autenticación
  10. $SECRET_KEY = "{SECRET KEY}";
  11. $culqi = new Culqi\Culqi(array('api_key' => $SECRET_KEY));
  12. // Creando Cargo a una tarjeta
  13. $customer = $culqi->Customers->create(
  14. array(
  15. "address" => "av lima 123",
  16. "address_city" => "lima",
  17. "country_code" => "PE",
  18. "email" => "www@".uniqid()."me.com",
  19. "first_name" => "Will",
  20. "last_name" => "Muro",
  21. "metadata" => array("test"=>"test"),
  22. "phone_number" => 899898999
  23. )
  24. );
  25. // Respuesta
  26. echo json_encode($customer);
  27. } catch (Exception $e) {
  28. echo json_encode($e->getMessage());
  29. }