Event Overview
Event Type:PAYMENT_UNDER_REVIEW
Category: Payment Verification
Description: The payment’s verification was accepted; it is with us and needs nothing from you
This is the event that ends the verification conversation. Everything the payment’s checklist asked for was supplied, the verification gateway took the set and passed it, and the payment moved to Under Review while it works its way to settlement.
It carries the same body as the events that ask for details, with an empty list. Every event in this family answers one question — what does this payment still need from me? Here the answer is nothing, and
action_required_fields is [] because that is what nothing looks like.If you already handle VERIFICATION_NEEDED, you can route this event through the same handler and it will do the right thing.When the webhook is sent
- An LRS submit passed. A complete set was filed through Submit Verification Details, the gateway verified the PAN, matched the sender to the account holder, reconciled TCS and confirmed the credit covers the amount. The synchronous response to that same call reads
"status": "in_review". - In sandbox, when a simulated payment is moved to Under Review — either by supplying the last outstanding verification field, or by choosing that settlement status on the simulator page.
Delivery Details
Headers
Verifying. The body is serialised once and those exact bytes are both sent and signed, so hashing the raw request body as received is correct — do not re-serialise the parsed JSON first. Prefer V2: the timestamp is inside the signed material, so a captured delivery cannot be replayed with a fresh one.
Payload Schema
Field Specifications
- Root Level Fields
- Data Object Fields
string
required
Always
"PAYMENT_UNDER_REVIEW" for this webhook eventstring
required
ISO 8601 datetime when the webhook event was created, in UTC and without an offset suffix.Example:
"2026-08-25T09:14:07.418322"string
required
Envelope version (e.g. “3.0.0”)
string
required
Unique identifier for this webhook event (UUID), useful for idempotency
object
required
The payment and its state
What to do when you receive it
- Respond
2xxas soon as you have accepted the payload, so the delivery is not retried. - Verify the signature against the raw request body.
- Record the payment as under review and stop chasing the payer. Nothing more is needed from either of you.
- Wait for settlement.
PAYMENT_SETTLEDis the next event in this payment’s life.
Under Review is not the same as verified. It means the set was accepted and the payment is with us. A
VERIFIED payment sends no event of its own, because there is nothing for you to act on either way — settlement is the signal to wait for.The family this event belongs to
Four events share one body, so a single handler can read all of them:
The one difference worth knowing: on
LRS_VERIFICATION_NEEDED the list holds objects ({code, message, …}); on the other two it holds strings. Check the element type, or route on event_type.
Related
Submit Verification Details
The call whose success raises this event.
LRS_VERIFICATION_NEEDED
The event that says something is still owed.
PAYMENT_SETTLED
The next event in the payment’s life.
Get Verification Requirements
Read
settlement_status to confirm where a payment stands.