SDK de Pagos - Perú
Para integrarte con el SDK de Pagos de Perú, apunta tus peticiones a las siguientes URLs:
// URL para pruebas: https://sandbox.api.payulatam.com/payments-api/
PayU.paymentsUrl = “https://api.payulatam.com/payments-api/”;
// URL para pruebas: https://sandbox.api.payulatam.com/reports-api/
PayU.reportsUrl = “https://api.payulatam.com/reports-api/”;
// URL para pruebas: https://sandbox.api.payulatam.com/payments-api/4.0/service.cgi
Environment::setPaymentsCustomUrl(“https://api.payulatam.com/payments-api/4.0/service.cgi”);
// URL para pruebas: https://sandbox.api.payulatam.com/reports-api/4.0/service.cgi
Environment::setReportsCustomUrl(“https://api.payulatam.com/reports-api/4.0/service.cgi”);
Métodos disponibles
El SDK de pagos incluye los siguientes métodos:
- Enviar transacciones con tarjeta de crédito
- Enviar transacciones en efectivo
- Consultar métodos de pago disponibles
- Ping
Nota
Para confirmar el estado de una transacción, puedes utilizar el SDK de Consultas.Enviar transacciones con tarjeta de crédito
Este método te permite procesar pagos realizados por tus clientes utilizando tarjetas de crédito. Para Perú, puedes realizar los flujos de dos pasos (Autorización, Captura) y el de un paso (Cobro). Para más información, consulta los flujos de pago.
Consideraciones
- Envía un método de pago válido de tarjeta de crédito, mira los métodos de pago disponibles para Perú.
- Para pagos con tókenes de tarjeta de crédito, asigna los parámetros
TOKEN_ID
yCREDIT_CARD_SECURITY_CODE
(si procesas con código de seguridad) reemplazando la información de la tarjeta de crédito. Para más información, refer to Tokenization API. - Por defecto, no está activo el procesamiento de tarjetas de crédito sin código de seguridad. Si quieres activar esta funcionalidad, contacta a tu representante de ventas. Luego de que se te active esta funcionalidad, asigna el parámetro
PROCESS_WITHOUT_CVV2
con true y elimina el parámetroCREDIT_CARD_SECURITY_CODE
. - En Perú, puedes seleccionar 0 o de 2 a 26 cuotas cuando pagas con tarjeta de crédito. Si seleccionas una (1) cuota, PayU envía cero (0) como valor por defecto.
Autorización
Utiliza este método para realizar el paso de Autorización del flujo de dos pasos. En este paso, autorizas el pago pero el monto no se debita hasta que captures los fondos.
Los siguientes ejemplos muestra cómo llamar los métodos para esta transacción de acuerdo con el lenguaje de programación.
String reference = "payment_test_00000001";
String value= "100";
Map<String, String> parameters = new HashMap<String, String>();
// Ingresa aquí el identificador de la cuenta.
parameters.put(PayU.PARAMETERS.ACCOUNT_ID, "512323");
// Ingresa aquí la referencia de pago.
parameters.put(PayU.PARAMETERS.REFERENCE_CODE, ""+reference);
// Ingresa aquí la descripción del pago.
parameters.put(PayU.PARAMETERS.DESCRIPTION, "payment test");
// Ingresa aquí el idioma de la transacción.
parameters.put(PayU.PARAMETERS.LANGUAGE, "Language.es");
// -- Valores --
//Ingresa aquí el valor.
parameters.put(PayU.PARAMETERS.VALUE, ""+value);
// Ingresa aquí la moneda.
parameters.put(PayU.PARAMETERS.CURRENCY, ""+Currency.PEN.name());
// -- Comprador --
// Ingresa aquí el identificador del comprador.
parameters.put(PayU.PARAMETERS.BUYER_ID, "1");
// Ingresa aquí el nombre del comprador.
parameters.put(PayU.PARAMETERS.BUYER_NAME, "First name and second buyer name");
// Ingresa aquí el correo electrónico del comprador
parameters.put(PayU.PARAMETERS.BUYER_EMAIL, "buyer_test@test.com");
// Ingresa aquí el teléfono de contacto del comprador.
parameters.put(PayU.PARAMETERS.BUYER_CONTACT_PHONE, "7563126");
// Ingresa aquí el número de identificación del comprador.
parameters.put(PayU.PARAMETERS.BUYER_DNI, "123456789");
// Ingresa aquí la dirección del comprador.
parameters.put(PayU.PARAMETERS.BUYER_STREET, "Av. Isabel La Católica 103-La Victoria");
parameters.put(PayU.PARAMETERS.BUYER_STREET_2, "5555487");
parameters.put(PayU.PARAMETERS.BUYER_CITY, "Lima");
parameters.put(PayU.PARAMETERS.BUYER_STATE, "Lima y Callao");
parameters.put(PayU.PARAMETERS.BUYER_COUNTRY, "PE");
parameters.put(PayU.PARAMETERS.BUYER_POSTAL_CODE, "000000");
parameters.put(PayU.PARAMETERS.BUYER_PHONE, "7563126");
// -- Pagador --
// Ingresa aquí el identificador del pagador.
parameters.put(PayU.PARAMETERS.PAYER_ID, "1");
// Ingresa aquí el nombre del pagador.
parameters.put(PayU.PARAMETERS.PAYER_NAME, "First name and second payer name");
// Ingresa aquí el correo electrónico del pagador.
parameters.put(PayU.PARAMETERS.PAYER_EMAIL, "payer_test@test.com");
// Ingresa aquí el número de teléfono del pagador.
parameters.put(PayU.PARAMETERS.PAYER_CONTACT_PHONE, "7563126");
// Ingresa aquí el número de identificación del pagador.
parameters.put(PayU.PARAMETERS.PAYER_DNI, "5415668464654");
// Ingresa aquí la dirección del pagador.
parameters.put(PayU.PARAMETERS.PAYER_STREET, "Av. Isabel La Católica 103-La Victoria");
parameters.put(PayU.PARAMETERS.PAYER_STREET_2, "5555487");
parameters.put(PayU.PARAMETERS.PAYER_CITY, "Lima");
parameters.put(PayU.PARAMETERS.PAYER_STATE, "Lima y Callao");
parameters.put(PayU.PARAMETERS.PAYER_COUNTRY, "PE");
parameters.put(PayU.PARAMETERS.PAYER_POSTAL_CODE, "000000");
parameters.put(PayU.PARAMETERS.PAYER_PHONE, "7563126");
// -- Datos de la tarjeta de crédito --
// Ingresa aquí el número de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.CREDIT_CARD_NUMBER, "4097440000000004");
// Ingresa aquí la fecha de expiración de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.CREDIT_CARD_EXPIRATION_DATE, "2022/12");
// Ingresa aquí el código de seguridad de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.CREDIT_CARD_SECURITY_CODE, "321");
// Ingresa aquí el nombre de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.PAYMENT_METHOD, "VISA");
// Ingresa aquí el número de cuotas.
parameters.put(PayU.PARAMETERS.INSTALLMENTS_NUMBER, "1");
// Ingresa aquí el nombre del país.
parameters.put(PayU.PARAMETERS.COUNTRY, PaymentCountry.PE.name());
// Device Session ID
parameters.put(PayU.PARAMETERS.DEVICE_SESSION_ID, "vghs6tvkcle931686k1900o6e1");
// IP del pagador
parameters.put(PayU.PARAMETERS.IP_ADDRESS, "127.0.0.1");
// Cookie de la sesión actual.
parameters.put(PayU.PARAMETERS.COOKIE, "pt1t38347bs6jc9ruv2ecpv7o2");
// User agent de la sesión actual.
parameters.put(PayU.PARAMETERS.USER_AGENT, "Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0");
// Petición de Autorización
TransactionResponse response = PayUPayments.doAuthorization(parameters);
// Puedes obtener las propiedades en la respuesta
if(response != null){
response.getOrderId();
response.getTransactionId();
response.getState();
if(response.getState().toString().equalsIgnoreCase("PENDING")){
response.getPendingReason();
}
response.getPaymentNetworkResponseCode();
response.getPaymentNetworkResponseErrorMessage();
response.getTrazabilityCode();
response.getResponseCode();
response.getResponseMessage();
}
$reference = "payment_test_00000001";
$value = "100";
$parameters = array(
//Ingresa aquí el identificador de la cuenta
PayUParameters::ACCOUNT_ID => "512323",
// Ingresa aquí la referencia de pago.
PayUParameters::REFERENCE_CODE => $reference,
// Ingresa aquí la descripción del pago.
PayUParameters::DESCRIPTION => "payment test",
// -- Valores --
//Ingresa aquí el valor.
PayUParameters::VALUE => $value,
// Ingresa aquí la moneda.
PayUParameters::CURRENCY => "PEN",
// -- Comprador --
// Ingresa aquí el identificador del comprador.
PayUParameters::BUYER_ID => "1",
// Ingresa aquí el nombre del comprador.
PayUParameters::BUYER_NAME => "First name and second buyer name",
// Ingresa aquí el correo electrónico del comprador.
PayUParameters::BUYER_EMAIL => "buyer_test@test.com",
// Ingresa aquí el teléfono de contacto del comprador.
PayUParameters::BUYER_CONTACT_PHONE => "7563126",
// Ingresa aquí el número de identificación del comprador.
PayUParameters::BUYER_DNI => "5415668464654",
// Ingresa aquí la dirección del comprador.
PayUParameters::BUYER_STREET => "Av. Isabel La Católica 103-La Victoria",
PayUParameters::BUYER_STREET_2 => "5555487",
PayUParameters::BUYER_CITY => "Lima",
PayUParameters::BUYER_STATE => "Lima y Callao",
PayUParameters::BUYER_COUNTRY => "PE",
PayUParameters::BUYER_POSTAL_CODE => "000000",
PayUParameters::BUYER_PHONE => "7563126",
// -- Pagador --
// Ingresa aquí el identificador del pagador.
PayUParameters::PARAMETERS.PAYER_ID => "1",
/// Ingresa aquí el nombre del pagador
PayUParameters::PAYER_NAME => "First name and second payer name",
// Ingresa aquí el correo electrónico del pagador
PayUParameters::PAYER_EMAIL => "payer_test@test.com",
// Ingresa aquí el número de teléfono del pagador.
PayUParameters::PAYER_CONTACT_PHONE => "7563126",
// Ingresa aquí el número de identificación del pagador.
PayUParameters::PAYER_DNI => "5415668464654",
// Ingresa aquí el tipo de identificación del pagador
PayUParameters::PARAMETERS.PAYER_DNI_TYPE => "DNI",
// Ingresa aquí la dirección del pagador.
PayUParameters::PAYER_STREET => "Av. Isabel La Católica 103-La Victoria",
PayUParameters::PAYER_STREET_2 => "5555487",
PayUParameters::PAYER_CITY => "Lima",
PayUParameters::PAYER_STATE => "Lima y Callao",
PayUParameters::PAYER_COUNTRY => "PE",
PayUParameters::PAYER_POSTAL_CODE => "000000",
PayUParameters::PAYER_PHONE => "7563126",
// -- Datos de la tarjeta de crédito --
// Ingresa aquí el número de la tarjeta de crédito
PayUParameters::CREDIT_CARD_NUMBER => "4097440000000004",
// Ingresa aquí la fecha de expiración de la tarjeta de crédito
PayUParameters::CREDIT_CARD_EXPIRATION_DATE => "2022/12",
// Ingresa aquí el código de seguridad de la tarjeta de crédito
PayUParameters::CREDIT_CARD_SECURITY_CODE=> "321",
// Ingresa aquí el nombre de la tarjeta de crédito
PayUParameters::PAYMENT_METHOD => "VISA",
// Ingresa aquí el número de cuotas.
PayUParameters::INSTALLMENTS_NUMBER => "1",
// Ingresa aquí el nombre del país.
PayUParameters::COUNTRY => PayUCountries::PE,
// Device Session ID
PayUParameters::DEVICE_SESSION_ID => "vghs6tvkcle931686k1900o6e1",
// IP del pagador
PayUParameters::IP_ADDRESS => "127.0.0.1",
// Cookie de la sesión actual
PayUParameters::PAYER_COOKIE=>"pt1t38347bs6jc9ruv2ecpv7o2",
// User agent de la sesión actual
PayUParameters::USER_AGENT=>"Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0"
);
// Petición de Autorización
$response = PayUPayments::doAuthorization($parameters);
// Puedes obtener las propiedades en la respuesta
if ($response) {
$response->transactionResponse->orderId;
$response->transactionResponse->transactionId;
$response->transactionResponse->state;
if ($response->transactionResponse->state=="PENDING"){
$response->transactionResponse->pendingReason;
}
$response->transactionResponse->paymentNetworkResponseCode;
$response->transactionResponse->paymentNetworkResponseErrorMessage;
$response->transactionResponse->trazabilityCode;
$response->transactionResponse->responseCode;
$response->transactionResponse->responseMessage;
}
Captura
Utiliza este método para realizar el paso de Captura del flujo de dos pasos. En este paso, capturas los fondos previamente Autorizados para transferirlos a tu cuenta PayU.
Los siguientes ejemplos muestra cómo llamar los métodos para esta transacción de acuerdo con el lenguaje de programación.
Map<String, String> parameters = new HashMap<String, String>();
// Ingresa aquí el identificador de la orden.
parameters.put(PayU.PARAMETERS.ORDER_ID, "1400469408");
// Ingresa aquí el identificador de la transacción.
parameters.put(PayU.PARAMETERS.TRANSACTION_ID, "143b2fcf-4dff-4fa0-a0c9-9409be949dd4");
// Ingresa aquí el idioma de la transacción.
parameters.put(PayU.PARAMETERS.LANGUAGE, "Language.es");
// Petición de Captura
TransactionResponse response = PayUPayments.doCapture(parameters);
// Respuesta
if(response != null){
response.getOrderId();
response.getTransactionId();
response.getState();
response.getPaymentNetworkResponseCode();
response.getPaymentNetworkResponseErrorMessage();
response.getTrazabilityCode();
response.getResponseCode();
response.getResponseMessage();
}
$parameters = array(
// Ingresa aquí el identificador de la cuenta.
PayUParameters::ACCOUNT_ID => "512322",
// Ingresa aquí el identificador de la orden.
PayUParameters::ORDER_ID => "1400469408",
// Ingresa aquí el identificador de la transacción.
PayUParameters::TRANSACTION_ID => "143b2fcf-4dff-4fa0-a0c9-9409be949dd4",
);
$response = PayUPayments::doCapture($parameters);
if ($response) {
$response->transactionResponse->orderId;
$response->transactionResponse->transactionId;
$response->transactionResponse->state;
$response->transactionResponse->paymentNetworkResponseCode;
$response->transactionResponse->paymentNetworkResponseErrorMessage;
$response->transactionResponse->trazabilityCode;
$response->transactionResponse->responseCode;
$response->transactionResponse->responseMessage;
}
Cobro
Utiliza este método para realizar el flujo de un paso, es decir, un cobro. En este paso, los pasos del flujo de dos pasos son combinados en una única transacción y los fondos son transferidos de la cuenta del cliente a tu cuenta PayU tan pronto sean aprobados:
Los siguientes ejemplos muestra cómo llamar los métodos para esta transacción de acuerdo con el lenguaje de programación.
String reference = "payment_test_00000001";
String value= "100";
Map<String, String> parameters = new HashMap<String, String>();
// Ingresa aquí el identificador de la cuenta.
parameters.put(PayU.PARAMETERS.ACCOUNT_ID, "512323");
// Ingresa aquí la referencia de pago.
parameters.put(PayU.PARAMETERS.REFERENCE_CODE, ""+reference);
// Ingresa aquí la descripción del pago.
parameters.put(PayU.PARAMETERS.DESCRIPTION, "payment test");
// Ingresa aquí el idioma de la transacción.
parameters.put(PayU.PARAMETERS.LANGUAGE, "Language.es");
// -- Valores --
//Ingresa aquí el valor.
parameters.put(PayU.PARAMETERS.VALUE, ""+value);
// Ingresa aquí la moneda.
parameters.put(PayU.PARAMETERS.CURRENCY, ""+Currency.PEN.name());
// -- Comprador --
// Ingresa aquí el identificador del comprador.
parameters.put(PayU.PARAMETERS.BUYER_ID, "1");
// Ingresa aquí el nombre del comprador.
parameters.put(PayU.PARAMETERS.BUYER_NAME, "First name and second buyer name");
// Ingresa aquí el correo electrónico del comprador
parameters.put(PayU.PARAMETERS.BUYER_EMAIL, "buyer_test@test.com");
// Ingresa aquí el teléfono de contacto del comprador.
parameters.put(PayU.PARAMETERS.BUYER_CONTACT_PHONE, "7563126");
// Ingresa aquí el número de identificación del comprador.
parameters.put(PayU.PARAMETERS.BUYER_DNI, "123456789");
// Ingresa aquí la dirección del comprador.
parameters.put(PayU.PARAMETERS.BUYER_STREET, "Av. Isabel La Católica 103-La Victoria");
parameters.put(PayU.PARAMETERS.BUYER_STREET_2, "5555487");
parameters.put(PayU.PARAMETERS.BUYER_CITY, "Lima");
parameters.put(PayU.PARAMETERS.BUYER_STATE, "Lima y Callao");
parameters.put(PayU.PARAMETERS.BUYER_COUNTRY, "PE");
parameters.put(PayU.PARAMETERS.BUYER_POSTAL_CODE, "000000");
parameters.put(PayU.PARAMETERS.BUYER_PHONE, "7563126");
// -- Pagador --
// Ingresa aquí el identificador del pagador.
parameters.put(PayU.PARAMETERS.PAYER_ID, "1");
// Ingresa aquí el nombre del pagador.
parameters.put(PayU.PARAMETERS.PAYER_NAME, "First name and second payer name");
// Ingresa aquí el correo electrónico del pagador.
parameters.put(PayU.PARAMETERS.PAYER_EMAIL, "payer_test@test.com");
// Ingresa aquí el número de teléfono del pagador.
parameters.put(PayU.PARAMETERS.PAYER_CONTACT_PHONE, "7563126");
// Ingresa aquí el número de identificación del pagador.
parameters.put(PayU.PARAMETERS.PAYER_DNI, "5415668464654");
// Ingresa aquí la dirección del pagador.
parameters.put(PayU.PARAMETERS.PAYER_STREET, "Av. Isabel La Católica 103-La Victoria");
parameters.put(PayU.PARAMETERS.PAYER_STREET_2, "5555487");
parameters.put(PayU.PARAMETERS.PAYER_CITY, "Lima");
parameters.put(PayU.PARAMETERS.PAYER_STATE, "Lima y Callao");
parameters.put(PayU.PARAMETERS.PAYER_COUNTRY, "PE");
parameters.put(PayU.PARAMETERS.PAYER_POSTAL_CODE, "000000");
parameters.put(PayU.PARAMETERS.PAYER_PHONE, "7563126");
// -- Datos de la tarjeta de crédito --
// Ingresa aquí el número de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.CREDIT_CARD_NUMBER, "4097440000000004");
// Ingresa aquí la fecha de expiración de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.CREDIT_CARD_EXPIRATION_DATE, "2022/12");
// Ingresa aquí el código de seguridad de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.CREDIT_CARD_SECURITY_CODE, "321");
// Ingresa aquí el nombre de la tarjeta de crédito
parameters.put(PayU.PARAMETERS.PAYMENT_METHOD, "VISA");
// Ingresa aquí el número de cuotas.
parameters.put(PayU.PARAMETERS.INSTALLMENTS_NUMBER, "1");
// Ingresa aquí el nombre del país.
parameters.put(PayU.PARAMETERS.COUNTRY, PaymentCountry.PE.name());
// Device Session ID
parameters.put(PayU.PARAMETERS.DEVICE_SESSION_ID, "vghs6tvkcle931686k1900o6e1");
// IP del pagador
parameters.put(PayU.PARAMETERS.IP_ADDRESS, "127.0.0.1");
// Cookie de la sesión actual.
parameters.put(PayU.PARAMETERS.COOKIE, "pt1t38347bs6jc9ruv2ecpv7o2");
// User agent de la sesión actual.
parameters.put(PayU.PARAMETERS.USER_AGENT, "Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0");
// Petición de Autorización
TransactionResponse response = PayUPayments.doAuthorizationAndCapture(parameters);
// Puedes obtener las propiedades en la respuesta
if(response != null){
response.getOrderId();
response.getTransactionId();
response.getState();
if(response.getState().toString().equalsIgnoreCase("PENDING")){
response.getPendingReason();
}
response.getPaymentNetworkResponseCode();
response.getPaymentNetworkResponseErrorMessage();
response.getTrazabilityCode();
response.getResponseCode();
response.getResponseMessage();
}
$reference = "payment_test_00000001";
$value = "100";
$parameters = array(
//Ingresa aquí el identificador de la cuenta
PayUParameters::ACCOUNT_ID => "512323",
// Ingresa aquí la referencia de pago.
PayUParameters::REFERENCE_CODE => $reference,
// Ingresa aquí la descripción del pago.
PayUParameters::DESCRIPTION => "payment test",
// -- Valores --
//Ingresa aquí el valor.
PayUParameters::VALUE => $value,
// Ingresa aquí la moneda.
PayUParameters::CURRENCY => "PEN",
// -- Comprador --
// Ingresa aquí el identificador del comprador.
PayUParameters::BUYER_ID => "1",
// Ingresa aquí el nombre del comprador.
PayUParameters::BUYER_NAME => "First name and second buyer name",
// Ingresa aquí el correo electrónico del comprador.
PayUParameters::BUYER_EMAIL => "buyer_test@test.com",
// Ingresa aquí el teléfono de contacto del comprador.
PayUParameters::BUYER_CONTACT_PHONE => "7563126",
// Ingresa aquí el número de identificación del comprador.
PayUParameters::BUYER_DNI => "5415668464654",
// Ingresa aquí la dirección del comprador.
PayUParameters::BUYER_STREET => "Av. Isabel La Católica 103-La Victoria",
PayUParameters::BUYER_STREET_2 => "5555487",
PayUParameters::BUYER_CITY => "Lima",
PayUParameters::BUYER_STATE => "Lima y Callao",
PayUParameters::BUYER_COUNTRY => "PE",
PayUParameters::BUYER_POSTAL_CODE => "000000",
PayUParameters::BUYER_PHONE => "7563126",
// -- Pagador --
// Ingresa aquí el identificador del pagador.
PayUParameters::PARAMETERS.PAYER_ID => "1",
/// Ingresa aquí el nombre del pagador
PayUParameters::PAYER_NAME => "First name and second payer name",
// Ingresa aquí el correo electrónico del pagador
PayUParameters::PAYER_EMAIL => "payer_test@test.com",
// Ingresa aquí el número de teléfono del pagador.
PayUParameters::PAYER_CONTACT_PHONE => "7563126",
// Ingresa aquí el número de identificación del pagador.
PayUParameters::PAYER_DNI => "5415668464654",
// Ingresa aquí el tipo de identificación del pagador
PayUParameters::PARAMETERS.PAYER_DNI_TYPE => "DNI",
// Ingresa aquí la dirección del pagador.
PayUParameters::PAYER_STREET => "Av. Isabel La Católica 103-La Victoria",
PayUParameters::PAYER_STREET_2 => "5555487",
PayUParameters::PAYER_CITY => "Lima",
PayUParameters::PAYER_STATE => "Lima y Callao",
PayUParameters::PAYER_COUNTRY => "PE",
PayUParameters::PAYER_POSTAL_CODE => "000000",
PayUParameters::PAYER_PHONE => "7563126",
// -- Datos de la tarjeta de crédito --
// Ingresa aquí el número de la tarjeta de crédito
PayUParameters::CREDIT_CARD_NUMBER => "4097440000000004",
// Ingresa aquí la fecha de expiración de la tarjeta de crédito
PayUParameters::CREDIT_CARD_EXPIRATION_DATE => "2022/12",
// Ingresa aquí el código de seguridad de la tarjeta de crédito
PayUParameters::CREDIT_CARD_SECURITY_CODE=> "321",
// Ingresa aquí el nombre de la tarjeta de crédito
PayUParameters::PAYMENT_METHOD => "VISA",
// Ingresa aquí el número de cuotas.
PayUParameters::INSTALLMENTS_NUMBER => "1",
// Ingresa aquí el nombre del país.
PayUParameters::COUNTRY => PayUCountries::PE,
// Device Session ID
PayUParameters::DEVICE_SESSION_ID => "vghs6tvkcle931686k1900o6e1",
// IP del pagador
PayUParameters::IP_ADDRESS => "127.0.0.1",
// Cookie de la sesión actual
PayUParameters::PAYER_COOKIE=>"pt1t38347bs6jc9ruv2ecpv7o2",
// User agent de la sesión actual
PayUParameters::USER_AGENT=>"Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0"
);
// Petición de Autorización
$response = PayUPayments::doAuthorizationAndCapture($parameters);
// Puedes obtener las propiedades en la respuesta
if ($response) {
$response->transactionResponse->orderId;
$response->transactionResponse->transactionId;
$response->transactionResponse->state;
if ($response->transactionResponse->state=="PENDING"){
$response->transactionResponse->pendingReason;
}
$response->transactionResponse->paymentNetworkResponseCode;
$response->transactionResponse->paymentNetworkResponseErrorMessage;
$response->transactionResponse->trazabilityCode;
$response->transactionResponse->responseCode;
$response->transactionResponse->responseMessage;
}
Enviar transacciones en efectivo
Este método te permite procesar los pagos en efectivo de tus clientes. Para integrarte con las transacciones en efectivo, debes redirigir a tu cliente a la URL que se encuentra en la respuesta; tu cliente ve un de pago como el siguiente.
Consideraciones
- El parámetro
EXPIRATION_DATE
no es obligatorio. Si no envías este parámetro, su valor por defecto es siete (7) días luego de la fecha actual.
Si envías una fecha posterior a dicho número de días, PayU ignorará este valor y asignará el valor por defecto - Los extra parámetros tienen los siguientes parámetros relacionados con la transacción:
- REFERENCE: referencia de pago interna generada por PayU.
- EXPIRATION_DATE: fecha máxima en la que el pagador puede realizar el pago.
- BAR_CODE: código de barras que le permite al pagador realizar el pago.
- URL_PAYMENT_RECEIPT_HTML: recibo de pago en formato HTML. Aquí es donde debe redirigir el pago cuando el pagador selecciona un método de pago en efectivo.
- URL_PAYMENT_RECEIPT_PDF: recibo de pago en formato PDF.
Llamado del método
Los siguientes ejemplos muestra cómo llamar los métodos para esta transacción de acuerdo con el lenguaje de programación.
String reference = "payment_test_00000001";
String value= "100";
Map<String, String> parameters = new HashMap<String, String>();
// Ingresa aquí el identificador de la cuenta.
parameters.put(PayU.PARAMETERS.ACCOUNT_ID, "512323");
// Ingresa aquí la referencia de pago.
parameters.put(PayU.PARAMETERS.REFERENCE_CODE, ""+reference);
// Ingresa aquí la descripción del pago.
parameters.put(PayU.PARAMETERS.DESCRIPTION, "payment test");
// Ingresa aquí el idioma de la transacción.
parameters.put(PayU.PARAMETERS.LANGUAGE, "Language.es");
// -- Valores --
//Ingresa aquí el valor.
parameters.put(PayU.PARAMETERS.VALUE, ""+value);
// Ingresa aquí la moneda.
parameters.put(PayU.PARAMETERS.CURRENCY, ""+Currency.PEN.name());
// -- Comprador --
// Ingresa aquí el identificador del comprador.
parameters.put(PayU.PARAMETERS.BUYER_ID, "1");
// Ingresa aquí el nombre del comprador.
parameters.put(PayU.PARAMETERS.BUYER_NAME, "First name and second buyer name");
// Ingresa aquí el correo electrónico del comprador
parameters.put(PayU.PARAMETERS.BUYER_EMAIL, "buyer_test@test.com");
// Ingresa aquí el teléfono de contacto del comprador.
parameters.put(PayU.PARAMETERS.BUYER_CONTACT_PHONE, "7563126");
// Ingresa aquí el número de identificación del comprador.
parameters.put(PayU.PARAMETERS.BUYER_DNI, "123456789");
// Ingresa aquí la dirección del comprador.
parameters.put(PayU.PARAMETERS.BUYER_STREET, "Av. Isabel La Católica 103-La Victoria");
parameters.put(PayU.PARAMETERS.BUYER_STREET_2, "5555487");
parameters.put(PayU.PARAMETERS.BUYER_CITY, "Lima");
parameters.put(PayU.PARAMETERS.BUYER_STATE, "Lima y Callao");
parameters.put(PayU.PARAMETERS.BUYER_COUNTRY, "PE");
parameters.put(PayU.PARAMETERS.BUYER_POSTAL_CODE, "000000");
parameters.put(PayU.PARAMETERS.BUYER_PHONE, "7563126");
// -- Pagador --
// Ingresa aquí el identificador del pagador.
parameters.put(PayU.PARAMETERS.PAYER_ID, "1");
// Ingresa aquí el nombre del pagador.
parameters.put(PayU.PARAMETERS.PAYER_NAME, "First name and second payer name");
// Ingresa aquí el correo electrónico del pagador.
parameters.put(PayU.PARAMETERS.PAYER_EMAIL, "payer_test@test.com");
// Ingresa aquí el número de teléfono del pagador.
parameters.put(PayU.PARAMETERS.PAYER_CONTACT_PHONE, "7563126");
// Ingresa aquí el número de identificación del pagador.
parameters.put(PayU.PARAMETERS.PAYER_DNI, "5415668464654");
// Ingresa aquí la dirección del pagador.
parameters.put(PayU.PARAMETERS.PAYER_STREET, "Av. Isabel La Católica 103-La Victoria");
parameters.put(PayU.PARAMETERS.PAYER_STREET_2, "5555487");
parameters.put(PayU.PARAMETERS.PAYER_CITY, "Lima");
parameters.put(PayU.PARAMETERS.PAYER_STATE, "Lima y Callao");
parameters.put(PayU.PARAMETERS.PAYER_COUNTRY, "PE");
parameters.put(PayU.PARAMETERS.PAYER_POSTAL_CODE, "000000");
parameters.put(PayU.PARAMETERS.PAYER_PHONE, "7563126");
// Enter the name of the cash payment here
parameters.put(PayU.PARAMETERS.PAYMENT_METHOD, "PAGOEFECTIVO");
// Ingresa aquí la fecha de vencimiento del pago
parameters.put(PayU.PARAMETERS.EXPIRATION_DATE, "2021-07-01T20:00:00");
// Ingresa aquí el nombre del país.
parameters.put(PayU.PARAMETERS.COUNTRY, PaymentCountry.PE.name());
// IP del pagador
parameters.put(PayU.PARAMETERS.IP_ADDRESS, "127.0.0.1");
// Petición de Autorización
TransactionResponse response = PayUPayments.doAuthorizationAndCapture(parameters);
// Puedes obtener las propiedades en la respuesta
if(response != null){
response.getOrderId();
response.getTransactionId();
response.getState();
if(response.getState().toString().equalsIgnoreCase("PENDING")){
response.getPendingReason();
Map extraParameters = response.getExtraParameters();
// Obten la URL del recibo de pago
int reference = (Integer)extraParameters.get("REFERENCE");
String pdf = (String)extraParameters.get("URL_PAYMENT_RECEIPT_PDF");
Date date = (Date)extraParameters.get("EXPIRATION_DATE");
String barCode = (String)extraParameters.get("BAR_CODE");
String url = (String)extraParameters.get("URL_PAYMENT_RECEIPT_HTML");
}
response.getPaymentNetworkResponseCode();
response.getPaymentNetworkResponseErrorMessage();
response.getTrazabilityCode();
response.getResponseCode();
response.getResponseMessage();
}
$reference = "payment_test_00000001";
$value = "100";
$parameters = array(
//Ingresa aquí el identificador de la cuenta
PayUParameters::ACCOUNT_ID => "512323",
// Ingresa aquí la referencia de pago.
PayUParameters::REFERENCE_CODE => $reference,
// Ingresa aquí la descripción del pago.
PayUParameters::DESCRIPTION => "payment test",
// -- Valores --
//Ingresa aquí el valor.
PayUParameters::VALUE => $value,
// Ingresa aquí la moneda.
PayUParameters::CURRENCY => "PEN",
// -- Comprador --
// Ingresa aquí el identificador del comprador.
PayUParameters::BUYER_ID => "1",
// Ingresa aquí el nombre del comprador.
PayUParameters::BUYER_NAME => "First name and second buyer name",
// Ingresa aquí el correo electrónico del comprador.
PayUParameters::BUYER_EMAIL => "buyer_test@test.com",
// Ingresa aquí el teléfono de contacto del comprador.
PayUParameters::BUYER_CONTACT_PHONE => "7563126",
// Ingresa aquí el número de identificación del comprador.
PayUParameters::BUYER_DNI => "5415668464654",
// Ingresa aquí la dirección del comprador.
PayUParameters::BUYER_STREET => "Av. Isabel La Católica 103-La Victoria",
PayUParameters::BUYER_STREET_2 => "5555487",
PayUParameters::BUYER_CITY => "Lima",
PayUParameters::BUYER_STATE => "Lima y Callao",
PayUParameters::BUYER_COUNTRY => "PE",
PayUParameters::BUYER_POSTAL_CODE => "000000",
PayUParameters::BUYER_PHONE => "7563126",
// -- Pagador --
// Ingresa aquí el identificador del pagador.
PayUParameters::PARAMETERS.PAYER_ID => "1",
/// Ingresa aquí el nombre del pagador
PayUParameters::PAYER_NAME => "First name and second payer name",
// Ingresa aquí el correo electrónico del pagador
PayUParameters::PAYER_EMAIL => "payer_test@test.com",
// Ingresa aquí el número de teléfono del pagador.
PayUParameters::PAYER_CONTACT_PHONE => "7563126",
// Ingresa aquí el número de identificación del pagador.
PayUParameters::PAYER_DNI => "5415668464654",
// Ingresa aquí el tipo de identificación del pagador
PayUParameters::PARAMETERS.PAYER_DNI_TYPE => "DNI",
// Ingresa aquí la dirección del pagador.
PayUParameters::PAYER_STREET => "Av. Isabel La Católica 103-La Victoria",
PayUParameters::PAYER_STREET_2 => "5555487",
PayUParameters::PAYER_CITY => "Lima",
PayUParameters::PAYER_STATE => "Lima y Callao",
PayUParameters::PAYER_COUNTRY => "PE",
PayUParameters::PAYER_POSTAL_CODE => "000000",
PayUParameters::PAYER_PHONE => "7563126",
// -- Datos de la tarjeta de crédito --
// Ingresa aquí el número de la tarjeta de crédito
PayUParameters::CREDIT_CARD_NUMBER => "4097440000000004",
// Ingresa aquí la fecha de expiración de la tarjeta de crédito
PayUParameters::CREDIT_CARD_EXPIRATION_DATE => "2022/12",
// Ingresa aquí el código de seguridad de la tarjeta de crédito
PayUParameters::CREDIT_CARD_SECURITY_CODE=> "321",
// Ingresa aquí el nombre de la tarjeta de crédito
PayUParameters::PAYMENT_METHOD => "PAGOEFECTIVO",
// Ingresa aquí la fecha de vencimiento del pago
PayUParameters::EXPIRATION_DATE => "2021-07-01T20:00:00",
// Ingresa aquí el nombre del país.
PayUParameters::COUNTRY => PayUCountries::PE,
// IP del pagador
PayUParameters::IP_ADDRESS => "127.0.0.1"
);
// Petición de Autorización
$response = PayUPayments::doAuthorizationAndCapture($parameters);
// Puedes obtener las propiedades en la respuesta
if ($response) {
$response->transactionResponse->orderId;
$response->transactionResponse->transactionId;
$response->transactionResponse->state;
if ($response->transactionResponse->state=="PENDING"){
$response->transactionResponse->pendingReason;
$response->transactionResponse->trazabilityCode;
$response->transactionResponse->authorizationCode;
$response->transactionResponse->extraParameters->REFERENCE;
$response->transactionResponse->extraParameters->URL_PAYMENT_RECEIPT_PDF;
$response->transactionResponse->extraParameters->EXPIRATION_DATE;
$response->transactionResponse->extraParameters->BAR_CODE;
$response->transactionResponse->extraParameters->URL_PAYMENT_RECEIPT_HTML;
}
$response->transactionResponse->paymentNetworkResponseCode;
$response->transactionResponse->paymentNetworkResponseErrorMessage;
$response->transactionResponse->trazabilityCode;
$response->transactionResponse->responseCode;
$response->transactionResponse->responseMessage;
}
Consultar métodos de pago disponibles
Este método retorna la lista de los métodos de pago disponibles en todos los paises.
Llamado del método
Los siguientes ejemplos muestra cómo llamar los métodos para esta transacción de acuerdo con el lenguaje de programación.
List<PaymentMethodComplete> response = PayUPayments.getPaymentMethods();
LoggerUtil.info("{0}", response);
$array=PayUPayments::getPaymentMethods();
$payment_methods=$array->paymentMethods;
foreach ($payment_methods as $payment_method){
$payment_method->country;
$payment_method->description;
$payment_method->id;
}
Ping
El método PING
te permite verificar la conexión con nuestra plataforma.
Llamado del método
Los siguientes ejemplos muestra cómo llamar los métodos para esta transacción de acuerdo con el lenguaje de programación.
boolean response = PayUPayments.doPing();
LoggerUtil.info("{0}", response);
$response = PayUPayments::doPing();
$response->code;