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

# Webhook events

> Payment webhook payload and event fields.

# Webhook events

Lynq sends `payment_intent.succeeded` after successful payment completion.

```json theme={null}
{
  "id": "evt_...",
  "object": "event",
  "type": "payment_intent.succeeded",
  "createdAt": "2026-08-07T12:00:00.000Z",
  "environment": "live",
  "data": {
    "id": "pi_...",
    "object": "payment_intent",
    "amount": 2500000,
    "currency": "AMD",
    "status": "succeeded",
    "orderId": "order_123",
    "createdAt": "2026-08-07T11:59:00.000Z"
  }
}
```

Use the event ID to deduplicate delivery and `data.orderId` to locate your order.


## Related topics

- [Verify webhooks](/build/webhooks.md)
- [Support](/resources/support.md)
- [Idram](/payment-methods/idram.md)
- [Checkout events and errors](/build/checkout-events.md)
- [Test your integration](/go-live/testing.md)
