Fetch Cards

The endpoint fetch all created virtual cards by the merchant

GET https://vcard.fuspay.finance/api/v1/User/FetchCards?merchant_id=

Query Parameter

Name
Value
Description

merchant_ID

intrapay merchant ID e.g 1234567395846_intrapay_merchant_id_code_001

Request Header

Name
Value
Description

Authorization

Bearer Token

Bearer token ${partner_secret_key}

x-partner-id

xxxxxx

Your partner ID eg. p602xxx

Response body

{
    "success": true,
    "message": "List of cards",
    "data": [
        {
            "date_created": "19-11-2024",
            "card_name": "Facebook sub",
            "card_no": "xxxx-xxx-xxxx-xxxx",
            "card_expiry": "12/28",
            "cvv": "xxx",
            "merchant_id": "1732010617639",
            "user_id": "1732010617639",
            "user_email": "[email protected]",
            "card_id": "C1732010617639",
            "tag": "fees"
        }
    ]
}

Last updated