PHP code example of baffouradu / mazzuma
1. Go to this page and download the library: Download baffouradu/mazzuma 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/ */
baffouradu / mazzuma example snippets
php
e \BaffourAdu\Mazzuma\MazzumaPayment;
//Replace this with API key as obtained from https://dashboard.mazzuma.com/
$APIKey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx";
$payment = new MazzumaPayment($APIKey);
try {
$response = $payment->transfer('MTN_TO_MTN')
->amount(1)
->from('05xxxxxx')
->to('02xxxxxx')
->send();
if ($payment->isSuccessful()) {
/* $response holds the original
structure of Mazzuma's API Response */
echo json_encode($response);
} else {
/* $response holds the original
structure of Mazzuma's API Response */
echo json_encode($response);
}
} catch (Exception $e) {
echo 'Message: ' .$e->getMessage();
}