Skip to main content
Permanently terminates a virtual card. This action is irreversible. Withdraw any remaining balance before terminating.
POST /customer/virtual/cards/terminate

Request Body

card_id
string
required
The virtual card ID to terminate.
curl -X POST 'https://api.yativo.com/api/v1/customer/virtual/cards/terminate' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: unique-key-here' \
  -d '{
    "card_id": "card_01HX9KZMB3F7VNQP8R2WDGT4E5"
  }'
{
  "status": "success",
  "status_code": 200,
  "message": "Card terminated successfully",
  "data": {
    "card_id": "card_01HX9KZMB3F7VNQP8R2WDGT4E5",
    "status": "terminated"
  }
}
Card termination is permanent and cannot be undone. Withdraw remaining funds before terminating.