@@ -10,7 +10,7 @@ $ composer require webirr/webirr
10
10
11
11
## Usage
12
12
13
- The library needs to be configured with a * merchant Id* & * API key* . You can get it by contacting [ webirr.com] ( https://webirr.com )
13
+ The library needs to be configured with a * merchant Id* & * API key* . You can get it by contacting [ webirr.com] ( https://webirr.net )
14
14
15
15
> You can use this library for production or test environments. you will need to set isTestEnv=true for test, and false for production apps when creating objects of class WeBirrClient
16
16
@@ -29,13 +29,13 @@ use WeBirr\WeBirrClient;
29
29
// Create & Update Bill
30
30
function main()
31
31
{
32
- $apiKey = 'YOUR_API_KEY' ;
33
- $merchantId = 'YOUR_MERCHANT_ID' ;
32
+ $apiKey = getenv('wb_apikey_1') !== false ? getenv('wb_apikey_1') : "" ;
33
+ $merchantId = getenv('wb_merchid_1') !== false ? getenv('wb_merchid_1') : "" ;
34
34
35
- //$apiKey = getenv('wb_apikey_1') ;
36
- //$merchantId = getenv('wb_merchid_1') ;
35
+ //$apiKey = 'YOUR_API_KEY' ;
36
+ //$merchantId = 'YOUR_MERCHANT_ID' ;
37
37
38
- $api = new WeBirrClient($apiKey, true);
38
+ $api = new WeBirrClient($merchantId, $ apiKey, true);
39
39
40
40
$bill = new Bill();
41
41
@@ -44,7 +44,7 @@ function main()
44
44
$bill->customerName = 'Elias Haileselassie';
45
45
$bill->time = '2021-07-22 22:14'; // your bill time, always in this format
46
46
$bill->description = 'hotel booking';
47
- $bill->billReference = 'php/2021/127 '; // your unique reference number
47
+ $bill->billReference = 'php/2021/128 '; // your unique reference number
48
48
$bill->merchantID = $merchantId;
49
49
50
50
echo "\nCreating Bill...";
@@ -94,35 +94,36 @@ main();
94
94
95
95
require 'vendor/autoload.php';
96
96
97
- use WeBirr\Bill;
98
97
use WeBirr\WeBirrClient;
98
+ use WeBirr\PaymentDetail;
99
99
100
- // Get Payment Status of Bill
100
+ // Get Payment Status of a Bill
101
101
function main()
102
102
{
103
- $apiKey = 'YOUR_API_KEY';
104
- $merchantId = 'YOUR_MERCHANT_ID';
105
103
106
- //$apiKey = getenv('wb_apikey_1');
107
- //$merchantId = getenv('wb_merchid_1');
104
+ $apiKey = getenv('wb_apikey_1') !== false ? getenv('wb_apikey_1') : "";
105
+ $merchantId = getenv('wb_merchid_1') !== false ? getenv('wb_merchid_1') : "";
106
+
107
+ //$apiKey = 'YOUR_API_KEY';
108
+ //$merchantId = 'YOUR_MERCHANT_ID';
108
109
109
- $api = new WeBirrClient($apiKey, true);
110
+ $api = new WeBirrClient($merchantId, $ apiKey, true);
110
111
111
- $paymentCode = 'PAYMENT_CODE_YOU_SAVED_AFTER_CREATING_A_NEW_BILL '; // suchas as '141 263 782';
112
+ $paymentCode = '149 233 514 '; // PAYMENT_CODE_YOU_SAVED_AFTER_CREATING_A_NEW_BILL
112
113
113
114
echo "\nGetting Payment Status...";
114
115
115
116
$res = $api->getPaymentStatus($paymentCode);
116
117
117
118
if (!$res->error) {
118
119
// success
119
- if ($res->res->status == 2) {
120
- $data = $res->res->data;
120
+ if ($res->res->status == 2) { // 0. Pending ( $res->res->data will be null !), 1. Payment in Progress (unconfirmed payment) 2. Paid
121
+ $payment = new PaymentDetail( $res->res->data) ;
121
122
echo "\nbill is paid";
122
123
echo "\nbill payment detail";
123
- echo "\nBank: $data ->bankID";
124
- echo "\nBank Reference Number: $data ->paymentReference";
125
- echo "\nAmount Paid: $data ->amount";
124
+ echo "\nBank: $payment ->bankID";
125
+ echo "\nBank Reference Number: $payment ->paymentReference";
126
+ echo "\nAmount Paid: $payment ->amount";
126
127
} else
127
128
echo "\nbill is pending payment";
128
129
} else {
@@ -145,18 +146,20 @@ main();
145
146
error: null ,
146
147
res: {
147
148
status: 2 ,
148
- data: {
149
- id: 111112347 ,
150
- paymentReference: ' 8G3303GHJN' ,
151
- confirmed: true ,
152
- confirmedTime: ' 2021-07-03 10:25:35' ,
153
- bankID: ' cbe_birr' ,
154
- time: ' 2021-07-03 10:25:33' ,
155
- amount: ' 4.60' ,
156
- wbcCode: ' 624 549 955'
157
- }
158
- },
159
- errorCode: null
149
+ data: {
150
+ status: 2 ,
151
+ id: 111219507 ,
152
+ bankID: " cbe_mobile" ,
153
+ paymentReference: " TX70e78862148f4c249606" ,
154
+ paymentDate: " 2025-02-26 22:17:19" ,
155
+ confirmed: true ,
156
+ confirmedTime: " 2025-02-26 22:17:19" ,
157
+ amount: " 278" ,
158
+ wbcCode: " 149 233 514" ,
159
+ updateTimeStamp: " 2025022622171981338"
160
+ }
161
+ },
162
+ errorCode: null
160
163
}
161
164
162
165
```
@@ -173,15 +176,16 @@ use WeBirr\WeBirrClient;
173
176
// Delete an existing Bill
174
177
function main()
175
178
{
176
- $apiKey = 'YOUR_API_KEY';
177
- $merchantId = 'YOUR_MERCHANT_ID';
178
179
179
- //$apiKey = getenv('wb_apikey_1');
180
- //$merchantId = getenv('wb_merchid_1');
180
+ $apiKey = getenv('wb_apikey_1') !== false ? getenv('wb_apikey_1') : "";
181
+ $merchantId = getenv('wb_merchid_1') !== false ? getenv('wb_merchid_1') : "";
182
+
183
+ //$apiKey = 'YOUR_API_KEY';
184
+ //$merchantId = 'YOUR_MERCHANT_ID';
181
185
182
- $api = new WeBirrClient($apiKey, true);
186
+ $api = new WeBirrClient($merchantId, $ apiKey, true);
183
187
184
- $paymentCode = 'PAYMENT_CODE_YOU_SAVED_AFTER_CREATING_A_NEW_BILL '; // suchas as '141 263 782';
188
+ $paymentCode = '460 609 416 '; // PAYMENT_CODE_YOU_SAVED_AFTER_CREATING_A_NEW_BILL
185
189
186
190
echo "\nDeleting Bill...";
187
191
@@ -200,4 +204,145 @@ function main()
200
204
201
205
main();
202
206
207
+ ```
208
+
209
+ ### Getting list of Payments and process them with Bulk Polling Consumer
210
+
211
+ ``` php
212
+
213
+ <?php
214
+
215
+ require 'vendor/autoload.php';
216
+
217
+ use WeBirr\WeBirrClient;
218
+ use WeBirr\Payment;
219
+
220
+ // Get list of Payments and process them with bulk polling consumer
221
+ class PaymentProcessor
222
+ {
223
+ private $apiKey;
224
+ private $merchantId;
225
+ private $api;
226
+ private $lastTimeStamp;
227
+
228
+ public function __construct()
229
+ {
230
+ $this->apiKey = getenv('wb_apikey_1') !== false ? getenv('wb_apikey_1') : "";
231
+ $this->merchantId = getenv('wb_merchid_1') !== false ? getenv('wb_merchid_1') : "";
232
+ $this->api = new WeBirrClient($this->merchantId, $this->apiKey, true);
233
+ $this->lastTimeStamp = '20250224120000'; // Example timestamp, replace with your actual last timestamp retrieved from your database to current date stamp for first time call
234
+ }
235
+
236
+ public function Run()
237
+ {
238
+ while (true) {
239
+ echo "\nRetrieving Payments...";
240
+ $this->FetchPayments();
241
+ echo "\nSleeping for 5 seconds...";
242
+ sleep(5); // Sleep for 5 seconds before the next polling
243
+ }
244
+ }
245
+
246
+ private function FetchPayments()
247
+ {
248
+ $limit = 100; // Number of records to retrieve depending on your processing requirement & capacity
249
+ $response = $this->api->getPayments($this->lastTimeStamp, $limit);
250
+
251
+ if (!$response->error) {
252
+ // success
253
+ if (count($response->res) == 0) {
254
+ echo "\nNo new payments found.";
255
+ }
256
+ foreach ($response->res as $obj) {
257
+ $payment = new Payment($obj);
258
+ $this->ProcessPayment($payment);
259
+ echo "\n-----------------------------";
260
+ }
261
+
262
+ if (count($response->res) > 0) {
263
+ $this->lastTimeStamp = $response->res[count($response->res) - 1]->updateTimeStamp;
264
+ echo "\nLast Timestamp: " . $this->lastTimeStamp; // save this to your database for next polling/call to getPayments()
265
+ }
266
+
267
+ } else {
268
+ // fail
269
+ echo "\nerror: " . $response->error;
270
+ echo "\nerrorCode: " . $response->errorCode; // can be used to handle specific business error such as ERROR_INVALID_INPUT
271
+ }
272
+ }
273
+
274
+ // Process Payment should be impleneted as idempotent operation for production use cases
275
+ private function ProcessPayment(Payment $payment)
276
+ {
277
+ echo "\nPayment Status: " . $payment->status;
278
+ if ($payment->IsPaid()) {
279
+ echo "\nPayment Status Text: Paid.";
280
+ }
281
+ if ($payment->IsReversed()) {
282
+ echo "\nPayment Status Text: Reversed.";
283
+ }
284
+ echo "\nBank: " . $payment->bankID;
285
+ echo "\nBank Reference Number: " . $payment->paymentReference;
286
+ echo "\nAmount Paid: " . $payment->amount;
287
+ echo "\nPayment Date: " . $payment->paymentDate;
288
+ echo "\nReversal/Cancel Date: " . $payment->canceledTime;
289
+ echo "\nUpdate Timestamp: " . $payment->updateTimeStamp;
290
+ }
291
+ }
292
+
293
+ // Run the payment processor
294
+ $processor = new PaymentProcessor();
295
+ $processor->Run();
296
+
297
+ ```
298
+
299
+ ### Gettting basic Statistics about bills created and payments received for a date range
300
+
301
+ ``` php
302
+
303
+ <?php
304
+
305
+ require 'vendor/autoload.php';
306
+
307
+ use WeBirr\WeBirrClient;
308
+ use WeBirr\Stat;
309
+
310
+ // Get basic statistics about bills created and payments received for a date range
311
+ function main()
312
+ {
313
+ $apiKey = getenv('wb_apikey_1') !== false ? getenv('wb_apikey_1') : "";
314
+ $merchantId = getenv('wb_merchid_1') !== false ? getenv('wb_merchid_1') : "";
315
+
316
+ //$apiKey = 'YOUR_API_KEY';
317
+ //$merchantId = 'YOUR_MERCHANT_ID';
318
+
319
+ $api = new WeBirrClient($merchantId, $apiKey, true);
320
+
321
+ $dateFrom = '2025-01-01'; // YYYY-MM-DD
322
+ $dateTo = '2030-01-31'; // YYYY-MM-DD
323
+
324
+ echo "\nRetrieving Statistics...";
325
+ echo "\nDate From: $dateFrom";
326
+ echo "\nDate To: $dateTo";
327
+
328
+ $response = $api->getStat($dateFrom, $dateTo);
329
+
330
+ if (!$response->error){
331
+ //success
332
+ $stat = new Stat($response->res);
333
+
334
+ echo "\nNumber of Bills Created: " . $stat->nBills;
335
+ echo "\nNumber of Paid Bills: " . $stat->nBillsPaid;
336
+ echo "\nNumber of Unpaid Bills: " . $stat->nBillsUnpaid;
337
+ echo "\nAmount of Bills: " . $stat->amountBills;
338
+ echo "\nAmount Paid: " . $stat->amountPaid;
339
+ echo "\nAmount Unpaid: " . $stat->amountUnpaid;
340
+ } else {
341
+ // error
342
+ echo "\nError: " . $response->error;
343
+ }
344
+ }
345
+
346
+ main();
347
+
203
348
```
0 commit comments