Page cover

Terminate Card

This endpoint is used to permanently close/terminate a card. Terminated cards cannot be reused and balances on terminated cards will be credited to the USD float wallet

POST {{base_url}}/business/vcard-terminate

Headers

Name
Type
Description

Authorization*

String

SECRET_KEY

Request Body

Name
Type
Description

vcardid*

Sting

Virtual card ID

Take a look at how you might do this:

curl --location '{{base_url}}/business/vcard-terminate' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer SECRET_KEY' \
--data '{
    "vcardid": "ao022-22e23o-2238-2829d"
}'

Sample response

{
    "status": true,
    "responsecode": "01",
    "message": "Card successfully terminated"
}

Last updated

Was this helpful?