Wallet Statement
Check Account Statement for specific dates. See below an example of the payload that will be expected by the server.
Statement
POST
https://sandbox.temboplus.com/tembo/v1/wallet/statement
Check account statement
Headers
Name
Type
Description
x-account-id*
string
Partner account id
x-secret-key*
string
Partner secret key
x-request-id*
string
A unique id identifying this request
Request Body
Name
Type
Description
accountNo*
string
Account number of the wallet to retrieve statement for
startDate*
date string
Statement start date
endDate*
date string
Statement end date
[
{
"accountNo": "6682002103",
"debitOrCredit": "CR",
"tranRefNo": "P50ZEXA2014301CI",
"narration": "CURRENT MONTH SALARY",
"txnDate": "2020-05-22",
"valueDate": "2020-05-22",
"amountCredited": 2232745.15,
"amountDebited": '',
"balance": 2232745.15,
},
{
"accountNo": "668200980",
"debitOrCredit": "CR",
"tranRefNo": "P50ZEXA2014301CI",
"narration": "RENT PAYMENT FOR JUN 2022",
"txnDate": "2020-05-22",
"valueDate": "2020-05-22",
"amountCredited": 1950000.00,
"amountDebited": '',
"balance": 2132745.15,
}
]
curl --request POST \
--url https://sandbox.temboplus.com/tembo/v1/wallet/statement \
--header 'content-type: application/json' \
--header 'x-account-id: ff6IfxxVceIMM6oFAc9Zig' \
--header 'x-secret-key: HYX5X4is3a4bnJJo4lXM936bFD6B8iMeAtXijNvHXMI==' \
--header 'x-request-id: 546d7a200cd8cb45d8ac' \
--data '{
"accountNo": "70089773",
"startDate": "2023-01-01",
"endDate": "2023-01-31"
}'
Last updated