> ## Documentation Index
> Fetch the complete documentation index at: https://developers.uqpay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# PaymentIntent Result

> Published when a payment intent is created, succeeds, fails, or requires customer action.

## Event Types

| Event Type                                 | Description                                              |
| ------------------------------------------ | -------------------------------------------------------- |
| `acquiring.payment_intent.created`         | A new payment intent was created.                        |
| `acquiring.payment_intent.succeeded`       | The payment was completed successfully.                  |
| `acquiring.payment_intent.failed`          | The payment intent failed (e.g. auto-closed on expiry).  |
| `acquiring.payment_intent.requires_action` | Requires additional customer action (e.g. 3DS redirect). |


## OpenAPI

````yaml webhooks-acquiring.yaml webhook paymentIntentResult
openapi: 3.1.0
info:
  title: Acquiring Webhooks
  version: 1.6.0
  description: |
    Webhook events for the Global Acquiring product. UQPAY sends these events to
    your registered webhook endpoint as HTTP POST requests with a JSON body.

    All events share a common envelope (`event_id`, `event_name`, `event_type`,
    `source_id`, `version`) and carry event-specific data in the `data` field.
servers: []
security: []
paths: {}

````