Cancel Card
The related card may remain in the pending_cancellation state for 48 hours after the call. The remaining amount on the card will be credited to your general balance.
POST https://vcard-api.paycertify.com/api/vcards/{vcard_id}/cancel
Field | Type | Description | Example |
---|---|---|---|
id |
uuid |
The vcard ID | 42e012cf-d007-4b15-bd44-8a1806bcaf6e |
Field | Type | Description | Example |
---|---|---|---|
status |
string |
Vcard actual status | pending_cancellation |
curl -X POST \
https://vcard-api.paycertify.com/api/vcards/42e012cf-d007-4b15-bd44-8a1806bcaf6e/cancel \
-H 'Authorization: Bearer YOUR_API_TOKEN' \
-H 'Content-Type: application/json'
Responds with:
{
"vcard": {
"status": "pending_cancellation"
}
}