Freeze Card

Virtual card freezing endpoint

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

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 frozen.

{
	
	"card_id": "m001"
	
}

Response body

{
    "success": true,
    "message": "Freeze Card Successful",
    "data": {
        "status": "inactive",
        "state": "freezed"
    }
}

Last updated