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": "247253e1-91f9-47e2-83bc-04b6129d03ba",
"source_id": "PI1939858486825324544",
"data": {
"amount": "7.77",
"cancell_time": null,
"cancellation_reason": "",
"complete_time": null,
"create_time": "2025-07-01T09:27:58.744+08:00",
"currency": "SGD",
"description": "acquiring sandbox testing",
"intent_status": "REQUIRES_PAYMENT_METHOD",
"merchant_order_id": "1bf70d90-9ed0-48ce-9370-9bd7ef6ab9ee",
"metadata": {
"request_id": "f1e9d719-6d04-4103-8dfb-526eb3ea01e8"
},
"payment_intent_id": "PI1939858486825324544",
"payment_method": {
"card": {
"card_name": "UQPAY",
"card_number": "534693******8117",
"network": "mastercard"
},
"type": "card"
}
}
}
{
"version": "V1.6.0",
"event_name": "ACQUIRING",
"event_type": "acquiring.payment_intent.succeeded",
"event_id": "9205e5ba-af82-4503-bd6c-bb2a666477b2",
"source_id": "PI1939858486825324544",
"data": {
"amount": "7.77",
"cancell_time": null,
"cancellation_reason": "",
"complete_time": "2025-07-01T09:27:58.818+08:00",
"create_time": "2025-07-01T09:27:58.744+08:00",
"currency": "SGD",
"description": "acquiring sandbox testing",
"intent_status": "SUCCEEDED",
"merchant_order_id": "1bf70d90-9ed0-48ce-9370-9bd7ef6ab9ee",
"metadata": {
"request_id": "f1e9d719-6d04-4103-8dfb-526eb3ea01e8"
},
"payment_intent_id": "PI1939858486825324544",
"payment_method": {
"card": {
"card_name": "UQPAY",
"card_number": "534693******8117",
"network": "mastercard"
},
"type": "card"
}
}
}
{
"version": "V1.6.0",
"event_name": "ACQUIRING",
"event_type": "acquiring.payment_intent.failed",
"event_id": "3d172c23-82c2-4557-99e7-d176e4c5d944",
"source_id": "PI1944566210867761152",
"data": {
"amount": "7.77",
"cancel_time": "2025-07-14T09:19:48.856+08:00",
"cancellation_reason": "",
"complete_time": "2025-07-14T09:19:48.856+08:00",
"create_time": "2025-07-14T09:14:47.622+08:00",
"currency": "SGD",
"description": "acquiring sandbox testing",
"intent_status": "FAILED",
"merchant_order_id": "de7382ac-4b66-4354-b453-4e17a70469c1",
"metadata": {
"request_id": "6b2637eb-5709-4da2-8afa-f25b288aa309"
},
"payment_intent_id": "PI1944566210867761152",
"payment_method": {
"card": {
"card_name": "UQPAY",
"card_number": "534693******8117",
"network": "mastercard"
},
"type": "card"
}
}
}