Delete Card

Virtual card freezing endpoint

POST https://vcard.fuspay.finance/api/v1/Card/DeleteCard

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

card_id

String

The ID of the card to be deleted.

{
	
	"card_id": "m001"
	
}

Response body

{
    "success": true,
    "message": "Card deleted successfully",
    "data": {
        "count": 1,
        "state": "deleted"
    }
}

Last updated