PHP code example of sadad-payment / library

1. Go to this page and download the library: Download sadad-payment/library 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/ */

    

sadad-payment / library example snippets

 php
$sadadConfig = array(
	'clientId'     => '',
	'clientSecret' => '',
	'isTest'       => true, // true for test mode | false for live mode
);

$sadadObj = new SadadLibrary( $sadadConfig );
$sadadObj->generateRefreshToken();

echo "Save the refresh Token ".$sadadObj->refreshToken. " into a secure place.";

 php

$invoice = array(
	'ref_Number'        => "order #110092",
	'amount'            => SadadLibrary::getKWDAmount( 'USD', 40 ),
	'customer_Name'     => "fname lname",
	'customer_Mobile'   => SadadLibrary::validatePhone( '+966987654321' ),
	'customer_Email'    => "[email protected]",
	'currency_Code'     => 'USD'
);

$request = array( 'Invoices' => array( $invoice ) );

$sadadInvoice = $sadadObj->createInvoice( $request, $sadadObj->refreshToken );

$invoiceURL = $sadadInvoice['InvoiceURL'];

echo "Pay Sadad Invoice <a href='$invoiceURL' target='_blank'>$invoiceURL</a>.";

 php

$invoiceInfo = $sadadObj->getInvoiceInfo( $sadadInvoice['InvoiceId'], $sadadObj->refreshToken );

echo "Sadad Invoice information <pre/>";
print_r($invoiceInfo);