1. Go to this page and download the library: Download katorymnd/pesapal-php-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
katorymnd / pesapal-php-sdk example snippets
// Prepare order data
$orderData = [
"id" => $merchantReference, // Merchant's unique reference for the transaction
"currency" => $data['currency'], // Currency for the payment
"amount" => (float) $data['amount'], // Transaction amount
"description" => $data['description'], // Description of the payment
"callback_url" => "https://www.example.com/payment-callback", // Your callback URL
"notification_id" => $notificationId, // Notification ID obtained from IPN registration
"branch" => "Katorymnd Freelancer", // Optional branch identifier
"payment_method" => "card", // Restrict payment option to CARD only
"billing_address" => []
];
// Map billing details
$billingDetails = $data['billing_details'];
$countryCode = isset($billingDetails['country']) ? strtoupper($billingDetails['country']) : '';
$orderData['billing_address'] = array_merge($orderData['billing_address'], [
"country_code" => $countryCode,
"first_name" => $billingDetails['first_name'] ?? '',
"middle_name" => '', // Optional
"last_name" => $billingDetails['last_name'] ?? '',
"line_1" => $billingDetails['address_line1'] ?? '',
"line_2" => $billingDetails['address_line2'] ?? '',
"city" => $billingDetails['city'] ?? '',
"state" => $billingDetails['state'] ?? '',
"postal_code" => $billingDetails['postal_code'] ?? ''
]);
// Include contact information
if (!empty($data['email_address'])) {
$orderData['billing_address']['email_address'] = $data['email_address'];
}
if (!empty($data['phone_number'])) {
// Format phone number using libphonenumber
$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
try {
$numberProto = $phoneUtil->parse($data['phone_number'], null);
$nationalNumber = $phoneUtil->format($numberProto, \libphonenumber\PhoneNumberFormat::NATIONAL);
$orderData['billing_address']['phone_number'] = preg_replace('/[\s()-]/', '', $nationalNumber);
} catch (\libphonenumber\NumberParseException $e) {
throw new PesapalException('Invalid phone number format: ' . $e->getMessage());
}
}
// Obtain access token
$accessToken = $clientApi->getAccessToken();
if (!$accessToken) {
throw new PesapalException('Failed to obtain access token');
}
// Submit order request
$response = $clientApi->submitOrderRequest($orderData);
// Redirect the customer to the payment page
header('Location: ' . $response['redirect_url']);
exit();
$orderTrackingId = $_GET['OrderTrackingId']; // Or retrieve from IPN data
// Get transaction status
$status = $pesapal->getTransactionStatus($orderTrackingId);
echo 'Transaction Status: ' . $status['status'];
// Prepare order data
$orderData = [
"id" => $merchantReference, // Unique merchant reference
"currency" => $currency, // Payment currency
"amount" => (float) $amount, // Payment amount
"description" => $description, // Description of the subscription
"callback_url" => "https://www.example.com/subscription-callback", // Callback URL
"notification_id" => $notificationId, // Notification ID from IPN registration
"billing_address" => []
];
// Include billing and contact information
if (!empty($emailAddress)) {
$orderData['billing_address']['email_address'] = $emailAddress;
}
if (!empty($phoneNumber)) {
$phoneUtil = \libphonenumber\PhoneNumberUtil::getInstance();
try {
$numberProto = $phoneUtil->parse($phoneNumber, null);
$nationalNumber = $phoneUtil->format($numberProto, \libphonenumber\PhoneNumberFormat::NATIONAL);
$orderData['billing_address']['phone_number'] = preg_replace('/[\s()-]/', '', $nationalNumber);
} catch (\libphonenumber\NumberParseException $e) {
throw new PesapalException('Invalid phone number format: ' . $e->getMessage());
}
}
// Map additional billing details
if (isset($data['billing_details'])) {
$billingDetails = $data['billing_details'];
$orderData['billing_address'] = array_merge($orderData['billing_address'], [
"country_code" => strtoupper($billingDetails['country'] ?? ''),
"first_name" => $billingDetails['first_name'] ?? '',
"middle_name" => $billingDetails['middle_name'] ?? '',
"last_name" => $billingDetails['last_name'] ?? '',
"line_1" => $billingDetails['address_line1'] ?? '',
"line_2" => $billingDetails['address_line2'] ?? '',
"city" => $billingDetails['city'] ?? '',
"state" => $billingDetails['state'] ?? '',
"postal_code" => $billingDetails['postal_code'] ?? '',
"zip_code" => ''
]);
}
// Handle recurring payment details
$isRecurring = isset($subscriptionDetails) && !empty($subscriptionDetails);
if ($isRecurring) {
if (!$accountNumber) {
throw new PesapalException('Account number is
$orderTrackingId = $data['order_tracking_id'];
// Obtain a valid access token
$accessToken = $clientApi->getAccessToken();
if (!$accessToken) {
throw new PesapalException('Failed to obtain access token');
}
// Get the transaction status
$response = $clientApi->getTransactionStatus($orderTrackingId);