Payment Request Card

Reference of Payloads to be sent for event type PAYMENT_REQUEST_CARD.

Webhook List

For information about specific payloads for a given API event type and webhook notification code, just click on the corresponding Webhook Code in the table below.

Event TypeEvent Sub TypeCodescheduled to be sent whenever...
PAYMENT_REQUEST_CARDCARD_REQUEST_CREATED5000a card payment request is created.
PAYMENT_REQUEST_CARDCARD_REQUEST_UPDATED5100a card payment request is updated.
PAYMENT_REQUEST_CARDCARD_REQUEST_CANCELLED5101a card payment request is cancelled.
PAYMENT_REQUEST_CARDCARD_REQUEST_FAILED5002a card payment request failed on being created, updated, cancelled or we have confirmation from providers that payment attempt was rejected.
PAYMENT_REQUEST_CARDCARD_REQUEST_SUCCESS5001we got confirmation from providers that payment attempt was success.
PAYMENT_REQUEST_CARDCARD_REQUEST_CHARGEBACK5005we got confirmation from providers that chargeback has been made by your customer.

CARD_REQUEST_CREATED

{
	  "event_type": "PAYMENT_REQUEST_CARD", /* API Event Type */
	  "event_type_description": "CARD_REQUEST_CREATED", /* Event Sub-Type description */
	  "webhook_notification_code": 5000, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "transaction_id": "trx_ehe77r6t8et5", /* External transaction ID related with the event, if exist */
	  "details": {
		    "id": null, /* Object ID of the API resource created/updated */
		    "code": "preq_kmsd989sd709sd9", /* Object Code of the API resource created/updated */
		    "status": "success", /* The status of the action */
	  }
}

CARD_REQUEST_UPDATED

{
	  "event_type": "PAYMENT_REQUEST_CARD", /* API Event Type */
	  "event_type_description": "CARD_REQUEST_UPDATED", /* Event Sub-Type description */
	  "webhook_notification_code": 5100, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "transaction_id": "trx_ehe77r6t8et5", /* External transaction ID related with the event, if exist */
	  "details": {
		    "id": null, /* Object ID of the API resource created/updated */
		    "code": "preq_kmsd989sd709sd9", /* Object Code of the API resource created/updated */
		    "status": "success", /* The status of the action */
	  }
}

CARD_REQUEST_CANCELLED

{
	  "event_type": "PAYMENT_REQUEST_CARD", /* API Event Type */
	  "event_type_description": "CARD_REQUEST_CANCELLED", /* Event Sub-Type description */
	  "webhook_notification_code": 5101, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "transaction_id": "trx_ehe77r6t8et5", /* External transaction ID related with the event, if exist */
	  "details": {
		    "id": null, /* Object ID of the API resource created/updated */
		    "code": "preq_kmsd989sd709sd9", /* Object Code of the API resource created/updated */
		    "status": "success", /* The status of the action */
	  }
}

CARD_REQUEST_FAILED

{
	  "event_type": "PAYMENT_REQUEST_CARD", /* API Event Type */
	  "event_type_description": "CARD_REQUEST_FAILED", /* Event Sub-Type description */
	  "webhook_notification_code": 5002, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "transaction_id": "trx_ehe77r6t8et5", /* External transaction ID related with the event, if exist */
	  "details": {
		    "id": null, /* Object ID of the API resource created/updated */
        "code": null, /* Object Code of the API resource created/updated */
		    "status": "failed", /* The status of the action */
		    "failed_reason": "FAILED_ON_CREATE", /* If status=failed, a failure code */
		    "failed_message": "Invalid card data provided" /* If status=failed, a description of the failure */
	  }
}

CARD_REQUEST_SUCCESS

{
	  "event_type": "PAYMENT_REQUEST_CARD", /* API Event Type */
	  "event_type_description": "CARD_REQUEST_SUCCESS", /* Event Sub-Type description */
	  "webhook_notification_code": 5001, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "transaction_id": "trx_ehe77r6t8et5", /* External transaction ID related with the event, if exist */
	  "details": {
		    "id": null, /* Object ID of the API resource created/updated */
		    "code": "preq_kmsd989sd709sd9", /* Object Code of the API resource created/updated */
		    "status": "success", /* The status of the action */
	  }
}

CARD_REQUEST_CHARGEBACK

{
	  "event_type": "PAYMENT_REQUEST_CARD", /* API Event Type */
	  "event_type_description": "CARD_REQUEST_CHARGEBACK", /* Event Sub-Type description */
	  "webhook_notification_code": 5005, /* Webhook notification event code */
	  "created_at": "2024-07-15 12:34:56", /* The timestamp when the event was created */
	  "first_sent_at": "2024-07-15 12:36:00", /* The timestamp of first attempt to send the event */
	  "attempts": 1, /* Attempts made by the webhook */
	  "account_id": 321, /* Account ID related with the event sent */
	  "customer_id": 345, /* Customer ID related with the event, if exist. */
    "request_id": 12343, /* If exist, our internal request ID related with the event. */
	  "transaction_id": "trx_ehe77r6t8et5", /* External transaction ID related with the event, if exist */
	  "details": {
		    "id": null, /* Object ID of the API resource created/updated */
		    "code": "preq_kmsd989sd709sd9", /* Object Code of the API resource created/updated */
		    "status": "success", /* The status of the action */
	  }
}