Table of contents

List BBPS Transactions

Retrieve the transaction history, including all its details, and statuses.

API URL: https://api.bulkpe.in/client/bbps/listBillTransactions

Method: POST

Auth: Please refer to the Authorization page.

{ "page": "", //numeric value "limit": "", //limit number of transaction result "category": "", //get from List Category API "status": "" //SUCCESS, PENDING, FAILED }
{ "status": true, "statusCode": 200, "data": [ { "billerId": "ICIC00000NATSI", "category": "Credit Card", "billerName": "ICICI Credit card", "reference": "hello004", "transactionId": "BBPS00020", "fetchId": "hello004", "transactionType": "VA", "npciRef": "NS014333222232323", "amount": 1, "charge": 2, "gst": 0.36, "totalCharge": 2.36, "status": "SUCCESS" }, { "billerId": "BULKPE00RNT01", "category": "Rent", "billerName": "Chaseout technologies pvt ltd", "reference": "", "transactionId": "TXNBILL2323232", "fetchId": "", "transactionType": "VA", "npciRef": "", "amount": 55555, "charge": 0, "gst": 0, "totalCharge": 0, "status": "FAILED" } ], "message": "Data found!", "count": 1, "total": 2, "page": 1 }