Webhook Events

WALLET_DEPOSIT

The event is sent when funds are credited to the customer’s internal account.

{
    "type": "WALLET_DEPOSIT",
    "sender_wallet": "TX9abc123...",
    "recipient_wallet": "P2U49984694",
    "transaction_number": "TN4395601712",
    "transaction_amount": 100,
    "transaction_currency": "USDT",
    "transaction_hash": "0xabc123def456...",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_ISSUED

The event is sent when a virtual card is successfully issued.

{
    "type": "CARD_ISSUED",
    "card_id": "VC7914059264"
}

CARD_CLOSED

The event is sent when a virtual card is closed.

{
    "type": "CARD_CLOSED",
    "card_id": "VC7914059264",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_BLOCKED

The event is sent when a virtual card is blocked.

{
    "type": "CARD_BLOCKED",
    "card_id": "VC7914059264",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_RENEWED

The event is sent when a virtual card is successfully renewed.

{
    "type": "CARD_RENEWED",
    "card_id": "VC7914059264",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_3DS_CODE_RECEIVED

The event is sent when a one-time verification code for a card operation is received.

{
    "type": "CARD_3DS_CODE_RECEIVED",
    "card_id": "VC7914059264",
    "otp_code": "123456",
    "transaction_amount": 100,
    "transaction_currency": "USD",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_TOKENIZATION_CODE_RECEIVED

The event is sent when a one-time verification code for card tokenization is received.

{
    "type": "CARD_TOKENIZATION_CODE_RECEIVED",
    "card_id": "VC7914059264",
    "otp_code": "123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_APPROVED

The event is sent when a transaction is successfully authorized using a virtual card.

{
    "type": "CARD_AUTHORIZATION_APPROVED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 50,
    "transaction_currency": "USD",
    "account_amount": 50,
    "account_currency": "USD",
    "merchant_name": "Amazon",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_FEE_DEDUCTED

The event is sent when an authorization fee is charged for a transaction using a virtual card.

{
    "type": "CARD_AUTHORIZATION_FEE_DEDUCTED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 1.5,
    "transaction_currency": "USD",
    "account_amount": 1.5,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_FEE_DEDUCTED_FROM_ACCOUNT

The event is sent when an authorization fee is charged from the customer’s internal account if the card balance is insufficient.

{
    "type": "CARD_AUTHORIZATION_FEE_DEDUCTED_FROM_ACCOUNT",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 1.5,
    "transaction_currency": "USD",
    "account_amount": 1.5,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_DECLINED

The event is sent when a transaction authorization using a virtual card is declined.

{
    "type": "CARD_AUTHORIZATION_DECLINED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 50,
    "transaction_currency": "USD",
    "account_amount": 50,
    "account_currency": "USD",
    "merchant_name": "Amazon",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_DECLINED_FEE_DEDUCTED

The event is sent when a fee is charged for a declined authorization attempt.

{
    "type": "CARD_AUTHORIZATION_DECLINED_FEE_DEDUCTED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 0.5,
    "transaction_currency": "USD",
    "account_amount": 0.5,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_DECLINED_FEE_DEDUCTED_FROM_ACCOUNT

The event is sent when a fee for a declined authorization is charged from the internal account if the card balance is insufficient.

{
    "type": "CARD_AUTHORIZATION_DECLINED_FEE_DEDUCTED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 0.5,
    "transaction_currency": "USD",
    "account_amount": 0.5,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_REVERSAL_PROCESSED

The event is sent when funds are reversed for a previously authorized transaction.

{
    "type": "CARD_REVERSAL_PROCESSED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 50,
    "transaction_currency": "USD",
    "account_amount": 50,
    "account_currency": "USD",
    "merchant_name": "Amazon",
    "authorization_id": "AUTH123456",
    "reversal_id": "REV987654",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_AUTHORIZATION_CAPTURED

The event is sent when the capture of funds based on a previously authorized transaction is confirmed.

{
    "type": "CARD_AUTHORIZATION_CAPTURED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 50,
    "transaction_currency": "USD",
    "account_amount": 50,
    "account_currency": "USD",
    "merchant_name": "Amazon",
    "authorization_id": "AUTH123456",
    "transaction_id": "TRX987654",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_CONVERSION_FEE_DEDUCTED

The event is sent when a currency conversion fee is charged for a transaction using a virtual card.

{
    "type": "CARD_CONVERSION_FEE_DEDUCTED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 1.2,
    "transaction_currency": "USD",
    "account_amount": 1.2,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "fee_id": "FEE987654",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_CONVERSION_FEE_CONFIRMED

The event is sent when a currency conversion fee for a previously processed transaction is confirmed.

{
    "type": "CARD_CONVERSION_FEE_CONFIRMED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 1.2,
    "transaction_currency": "USD",
    "account_amount": 1.2,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "fee_id": "FEE987654",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_CONVERSION_FEE_DEDUCTED_FROM_ACCOUNT

The event is sent when a currency conversion fee is charged from the internal account if the card balance is insufficient.

{
    "type": "CARD_CONVERSION_FEE_DEDUCTED_FROM_ACCOUNT",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 1.2,
    "transaction_currency": "USD",
    "account_amount": 1.2,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_REFUND_ON_HOLD

The event is sent when a refund is created and is in a pending state.

{
    "type": "CARD_REFUND_ON_HOLD",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 50,
    "transaction_currency": "USD",
    "account_amount": 50,
    "account_currency": "USD",
    "merchant_name": "Amazon",
    "authorization_id": "AUTH123456",
    "refund_id": "REF987654",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_REFUND_TO_ACCOUNT

The event is sent when refund funds are credited to the customer’s internal account.

{
    "type": "CARD_REFUND_TO_ACCOUNT",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 50,
    "transaction_currency": "USD",
    "account_amount": 50,
    "account_currency": "USD",
    "merchant_name": "Amazon",
    "authorization_id": "AUTH123456",
    "refund_id": "REF987654",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_OUT_OF_WHITELIST_FEE_DEDUCTED

The event is sent when a fee is charged for a transaction outside the allowed list.

{
    "type": "CARD_OUT_OF_WHITELIST_FEE_DEDUCTED",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 2.0,
    "transaction_currency": "USD",
    "account_amount": 2.0,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}

CARD_OUT_OF_WHITELIST_FEE_DEDUCTED_FROM_ACCOUNT

The event is sent when a fee for a transaction outside the allowed list is charged from the internal account if the card balance is insufficient.

{
    "type": "CARD_OUT_OF_WHITELIST_FEE_DEDUCTED_FROM_ACCOUNT",
    "card_id": "VC7914059264",
    "transaction_number": "TN4395601712",
    "transaction_amount": 2.0,
    "transaction_currency": "USD",
    "account_amount": 2.0,
    "account_currency": "USD",
    "merchant_name": "PAY2.HOUSE",
    "authorization_id": "AUTH123456",
    "time_created": 1714230000,
    "date_created": "2026-04-27 18:00:00"
}
We use cookies to improve the website’s performance. By continuing to use the site, you agree to our privacy policy and service rules.