Export Card Transactions

The virtual card export endpoint helps to export all transactions performed by a card within some specified date range

POST https://vcard.fuspay.finance/api/v1/Txn/CardExports

Request Header

Name
Type
Description

Authorization

Bearer Token

Bearer token ${partner_secret_key}

Content-Type

Application/json

x-partner-id

xxxxxxxx

Your partner ID eg. p602xxx

Request body

Name
Type
Description

date_from

String

The start date to which the history history is to be exported.

date_to

String

The end date to which the history history is to be exported.

{
	
	"date_from": "2024-10-01",
	"date_to": "2024-11-01"
	
}

Response body

{
    "success": true,
    "message": "Exported card txns. Please donwload from url",
    "data": {
        "download_csv_url": "https://example.co"
    }
}

Last updated