Skip to main content

Get All Transactions and their descriptions

GET https://gateway.manka.tz/v1/api/transactions

This resources responds with all the transactions in the pdf file in a json format.

Header Requirements

  • Authorization --required

Body Params

  • file --required
  • fullname --required
curl example request
curl -X 'POST' 'https://gateway.manka.tz/v1/api/transactions'
-F fullname=Hussein \
-F 'file=@Airtel_4435535_Statement.pdf' \
-H 'Authorization: Bearer XXXXXXXXXXX' \'

Sample Response

200 OK

{
"name": "Juma Abdully",
"account": "255756XXXXXX",
"contacts": "255756XXXXXX",
"company": "Vodacom",
"currency": "Tanzanian Shilling",
"currency_code": "TZS",
"start_date": "2024-09-01T01:33:00",
"end_date": "2024-12-31T08:09:00",
"no_of_transactions": 838,
"transactions": [
{
"trans_date": "2024-09-01",
"details": "FSP Disburse Fund from 922746 TIPS CRDB",
"amount": 50000,
"transaction_type": "credit",
"type": "p2p_received",
"balance": 50000.04
},
{
"trans_date": "2024-09-01",
"details": "Overdraft Repayment to 921492 SONGESHA FINCA LOAN",
"amount": 29875,
"transaction_type": "debit",
"type": "loan_repayment",
"balance": 0.04
},
{
"trans_date": "2024-09-01",
"details": "Overdraft Repayment to 921492 SONGESHA FINCA LOAN",
"amount": 20125,
"transaction_type": "debit",
"type": "loan_repayment",
"balance": 29875.04
},
{
"trans_date": "2024-09-01",
"details": "Overdraft Payment from 921492 SONGESHA FINCA LOAN",
"amount": 18850,
"transaction_type": "credit",
"type": "loan_disbursement",
"balance": 18850.04
},
{
"trans_date": "2024-09-01",
"details": "Merchant Payment",
"amount": 18000,
"transaction_type": "debit",
"type": "payment",
"balance": 0.04
},
{
"trans_date": "2024-09-01",
"details": "Overdraft Payment from 921492 SONGESHA FINCA LOAN",
"amount": 18850,
"transaction_type": "credit",
"type": "loan_disbursement",
"balance": 18850.04
},
{
"trans_date": "2024-09-01",
"details": "Merchant Payment",
"amount": 18000,
"transaction_type": "debit",
"type": "payment",
"balance": 0.04
},
{
"trans_date": "2024-09-02",
"details": "Overdraft Payment from 921492 SONGESHA FINCA LOAN",
"amount": 16645,
"transaction_type": "credit",
"type": "loan_disbursement",
"balance": 16645.04
}
]
}