Page cover

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

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?