Card Statement
This endpoint returns all the transactions for a specific card
POST
{{base_url}}/business/card-statement
Headers
Name
Type
Description
Authorization*
String
SECRET_KEY
Request Body
Name
Type
Description
cardid*
Sting
Card ID
Your secret keys are to be kept secret and only stored on your servers. Do not pass your secret key to the front-end language where it can be exploited.
Take a look at how you might do this:
curl --location '{{base_url}}/business/card-statement' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data '{
"cardid": "ao022-22e23o-2238-2829d"
}'
Sample response
{
"status": true,
"msg": "Transaction Statement",
"data": [
{
"card_type": "physical",
"card_brand": "Verve",
"card_currency": "NGN",
"amount": "38,000",
"trans_currency": "NGN",
"transchannel": "MonTech POS",
"transtype": "Withdraw",
"transtatus": "Success",
"trans_reference": 180507920200022257,
"transdate": "2024-11-08T03:44:13"
}
]
}
Last updated
Was this helpful?