-
Notifications
You must be signed in to change notification settings - Fork 40
/
Paybill_to_Till.php
41 lines (41 loc) · 1.63 KB
/
Paybill_to_Till.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
include 'accessToken.php';
include 'securitycridential.php';
$apiUrl = "https://sandbox.safaricom.co.ke/mpesa/b2b/v1/paymentrequest";
$initiator = "testapi";
$amount = "1";
$partyA = "600991"; // Business short code
$partyB = "000000"; // Merchant's short code or till number
$accountReference = "353353"; // A unique reference number for the transaction
$requester = "254700000000"; // Phone number of the person making the request
$remarks = "OK"; // Optional remarks for the transaction
$queueTimeOutURL = "https://e876-105-161-99-82.ngrok-free.app/MPEsa-Daraja-Api/Paybiil_to_Paybill_Callback.php";
$resultURL = "https://e876-105-161-99-82.ngrok-free.app/MPEsa-Daraja-Api/Paybiil_to_Paybill_Callback.php";
// Prepare the request body as an array
$requestBody = array(
'Initiator' => $initiator,
'SecurityCredential' => $SecurityCredential,
'CommandID' => 'BusinessBuyGoods',
'SenderIdentifierType' => '4',
'RecieverIdentifierType' => '4',
'Amount' => $amount,
'PartyA' => $partyA,
'PartyB' => $partyB,
'AccountReference' => $accountReference,
'Requester' => $requester,
'Remarks' => $remarks,
'QueueTimeOutURL' => $queueTimeOutURL,
'ResultURL' => $resultURL,
);
$requestJson = json_encode($requestBody);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiUrl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $requestJson);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Authorization:Bearer ' . $access_token // Replace with your actual access token
));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
echo $response;