curl --location 'https://uat-payments.alps.cl/justpay/check-out/SecurePayment.php' \
--form 'public_key="YOUR_PUBLIC_KEY"' \
--form 'time="2024-07-17 16:33:11"' \
--form 'amount="2000"' \
--form 'currency="COP"' \
--form 'trans_id="1"' \
--form 'time_expired="120"' \
--form 'url_ok="https://bit.ly/3S4I7iR"' \
--form 'url_error="https://bit.ly/3S5aOwc"' \
--form 'channel="33"' \
--form 'signature="YOUR_SIGNATURE"' \
--form 'shopper_information="{\"Phone\": \"3044914743\", \"email\": \"[email protected]\", \"country\": \"COL\", \"country_code\": \"+57\", \"name_shopper\": \"Jairo milano\", \"Num_doc_identi\": \"5004887414\", \"type_doc_identi\": \"TI\", \"last_name_Shopper\": \"Jairo milano\"}"'
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://uat-payments.alps.cl/justpay/check-out/SecurePayment.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS => array('public_key' => 'YOUR_PUBLIC_KEY','time' => '2024-07-17 16:33:11','amount' => '2000','currency' => 'COP','trans_id' => '1','time_expired' => '120','url_ok' => 'https://bit.ly/3S4I7iR','url_error' => 'https://bit.ly/3S5aOwc','channel' => '33','signature' => 'YOUR_SIGNATURE','shopper_information' => '{"Phone": "3044914743", "email": "[email protected]", "country": "COL", "country_code": "+57", "name_shopper": "Jairo milano", "Num_doc_identi": "5004887414", "type_doc_identi": "TI", "last_name_Shopper": "Jairo milano"}'),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
import requests
url = "https://uat-payments.alps.cl/justpay/check-out/SecurePayment.php"
payload = {'public_key': 'YOUR_PUBLIC_KEY',
'time': '2024-07-17 16:33:11',
'amount': '2000',
'currency': 'COP',
'trans_id': '1',
'time_expired': '120',
'url_ok': 'https://bit.ly/3S4I7iR',
'url_error': 'https://bit.ly/3S5aOwc',
'channel': '33',
'signature': 'YOUR_SIGNATURE',
'shopper_information': '{"Phone": "3044914743", "email": "[email protected]", "country": "COL", "country_code": "+57", "name_shopper": "Jairo milano", "Num_doc_identi": "5004887414", "type_doc_identi": "TI", "last_name_Shopper": "Jairo milano"}'}
files=[
]
headers = {}
response = requests.request("POST", url, headers=headers, data=payload, files=files)
print(response.text)
var request = require('request');
var options = {
'method': 'POST',
'url': 'https://uat-payments.alps.cl/justpay/check-out/SecurePayment.php',
'headers': {
},
formData: {
'public_key': 'YOUR_PUBLIC_KEY',
'time': '2024-07-17 16:33:11',
'amount': '2000',
'currency': 'COP',
'trans_id': '1',
'time_expired': '120',
'url_ok': 'https://bit.ly/3S4I7iR',
'url_error': 'https://bit.ly/3S5aOwc',
'channel': '33',
'signature': 'YOUR_SIGNATURE',
'shopper_information': '{"Phone": "3044914743", "email": "[email protected]", "country": "COL", "country_code": "+57", "name_shopper": "Jairo milano", "Num_doc_identi": "5004887414", "type_doc_identi": "TI", "last_name_Shopper": "Jairo milano"}'
}
};
request(options, function (error, response) {
if (error) throw new Error(error);
console.log(response.body);
});