Card Transactions

The endpoint gets list of transactions performed by a card. The users debit (online purchases) and credits performed by the card

GET https://vcard.fuspay.finance/api/v1/Txn/Card?card_id=0001

Request Header

Name
Value
Description

Authorization

Bearer Token

Bearer token ${partner_secret_key}

x-partner-id

xxxxxx

Your partner ID eg. p602xxx

Query parameter

Key
Value
Description

card_id

c00001

Response body

{
    "success": true,
    "message": "List of card transactions",
    "data": [
        {
            "date": "19-11-2024",
            "amount": 100,
            "type": "debit",
            "description": "xxxxx",
            "tag": "school fees",
            "fee": 0
        }
    ]
}

Last updated