curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/customers/yativo_card_customer_8f9a..._1769031332068/cards/b2dc97ab-03f9-49eb-c72f-95be13815278/void' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json'
{
"success": true,
"message": "Card marked as void successfully",
"data": {
"yativo_card_id": "yativo_card_customer_8f9a..._1769031332068",
"card_id": "b2dc97ab-03f9-49eb-c72f-95be13815278",
"is_void": true,
"voided_at": "2026-04-01T14:00:00.000Z"
}
}
{
"success": false,
"error_code": "VIRTUAL_CARD_ONLY",
"message": "Only virtual cards can be voided"
}
{
"success": false,
"error_code": "CARD_ALREADY_VOIDED",
"message": "Card is already voided"
}
Card Customer — Card Operations
Void Customer Card
Permanently void a customer’s virtual card. This action is irreversible and only applies to virtual cards.
POST
/
v1
/
yativo-card
/
customers
/
{yativoCardId}
/
cards
/
{cardId}
/
void
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/customers/yativo_card_customer_8f9a..._1769031332068/cards/b2dc97ab-03f9-49eb-c72f-95be13815278/void' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json'
{
"success": true,
"message": "Card marked as void successfully",
"data": {
"yativo_card_id": "yativo_card_customer_8f9a..._1769031332068",
"card_id": "b2dc97ab-03f9-49eb-c72f-95be13815278",
"is_void": true,
"voided_at": "2026-04-01T14:00:00.000Z"
}
}
{
"success": false,
"error_code": "VIRTUAL_CARD_ONLY",
"message": "Only virtual cards can be voided"
}
{
"success": false,
"error_code": "CARD_ALREADY_VOIDED",
"message": "Card is already voided"
}
Bearer token:
Bearer YOUR_ACCESS_TOKENThe customer’s
yativo_card_id.The virtual card ID to void.
Voiding is permanent and irreversible — the card is cancelled on the card network immediately. Only virtual cards can be voided. For physical cards, use Freeze to block transactions instead.
curl -X POST 'https://crypto-api.yativo.com/api/v1/yativo-card/customers/yativo_card_customer_8f9a..._1769031332068/cards/b2dc97ab-03f9-49eb-c72f-95be13815278/void' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
-H 'Content-Type: application/json'
{
"success": true,
"message": "Card marked as void successfully",
"data": {
"yativo_card_id": "yativo_card_customer_8f9a..._1769031332068",
"card_id": "b2dc97ab-03f9-49eb-c72f-95be13815278",
"is_void": true,
"voided_at": "2026-04-01T14:00:00.000Z"
}
}
{
"success": false,
"error_code": "VIRTUAL_CARD_ONLY",
"message": "Only virtual cards can be voided"
}
{
"success": false,
"error_code": "CARD_ALREADY_VOIDED",
"message": "Card is already voided"
}
⌘I

