PaymentIntent Result

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.
    • acquiring.payment_intent.requires_action

Request body

FieldsData TypeDescription
event_idstringA unique ID for the event.
event_namestringEvent name.
event_typestringEvent type.
source_idstringPayment intent id
versionstringAPI Version number.
dataobjectRelated 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"
        }
    }
}

{
    "version": "V1.6.0",
    "event_name": "ACQUIRING",
    "event_type": "acquiring.payment_intent.requires_action",
    "event_id": "f5aa4bce-d764-40ea-be06-323831cb3317",
    "source_id": "PI1966116132523872256",
    "data": {
        "amount": "13",
        "cancel_time": null,
        "cancellation_reason": "",
        "complete_time": null,
        "create_time": "0001-01-01T00:00:00Z",
        "currency": "SGD",
        "description": "Payment Link Transaction",
        "intent_status": "REQUIRES_CUSTOMER_ACTION",
        "merchant_order_id": "9587a404-486e-467f-9eac-2e045f2c5e5b",
        "metadata": null,
        "next_action": {
            "redirect_to_url": {
                "return_url": "",
                "url": "https://checkout-sandbox.uqpaytech.com/secure/Ht***Sg0H1VlQ=="
            }
        },
        "payment_intent_id": "PI1966116132523872256",
        "payment_method": {
            "card": {
                "card_name": "zzx wdz",
                "card_number": "520473******1011",
                "network": "mastercard"
            },
            "type": "card"
        }
    }
}