Sent when a payment reaches its final state, either succeeded
or failed
. This notification helps merchants determine whether a payment was completed successfully or has permanently failed.
Event metadata
- name:
ACQUIRING
- types:
acquiring.payment_intent.created
acquiring.payment_intent.succeeded
acquiring.payment_intent.failed
: Triggered when a Payment Intent is automatically closed by the system upon reaching its expiry time.
Request body
Fields | Data Type | Description |
---|---|---|
event_id | string | A unique ID for the event. |
event_name | string | Event name. |
event_type | string | Event type. |
source_id | string | Payment intent id |
version | string | API Version number. |
data | object | Related business objects. |
Notification example
{
"version": "V1.6.0",
"event_name": "ACQUIRING",
"event_type": "acquiring.payment_intent.created",
"event_id": "c26e83c3-8d3e-4886-94cf-db22472cad6f",
"source_id": "a08b5aae-12ae-4956-bdf0-2359c1010031",
"data": {
"amount": "3.01",
"payment_method": {
"type": "card",
"card": {
"card_name": "card Name",
"card_number": "************5668",
"network": "visa",
}
},
"cancel_time": "",
"cancellation_reason": "",
"currency": "SGD",
"description": "description",
"intent_status": "",
"merchant_order_id": "d05e3b92-83d4-4ae0-8b8d-8b526e6d196a",
"metadata": {
"request_id": "db1d007b-b449-4360-9950-04cb0fcc6f94"
},
"payment_intent_id": "PI1925112193204883456",
"create_time": "2024-03-01T00:00:00+08:00",
"complete_time": "2024-03-01T00:00:00+08:00",
}
}
{
"version": "V1.6.0",
"event_name": "ACQUIRING",
"event_type": "acquiring.payment_intent.failed",
"event_id": "9e889c59-59cb-4d45-860e-f457ccf6f230",
"source_id": "PI1943220903361908736",
"data": {
"amount": "0.01",
"cancel_time": "2025-07-10T16:14:09.486+08:00",
"cancellation_reason": "",
"complete_time": "2025-07-10T16:14:09.486+08:00",
"create_time": "2025-07-10T16:09:01.317+08:00",
"currency": "SGD",
"description": "text",
"intent_status": "FAILED",
"merchant_order_id": "62ac747c-6f30-4a9b-b766-9bfbe03e522c",
"metadata": {
"request_id": "2ab81283-2f2a-41bb-bbd9-9ad27c98edff"
},
"payment_intent_id": "PI1943220903361908736",
"payment_method": {
"type": "wechatpay",
"wechatpay": {
"flow": "qrcode",
"os_type": ""
}
}
}
}