Links

Payment.review_opened

This event is dispatched when a payment goes into review. This happens when a payment gateway (e.g. Stripe) has suspended a payment, pending review. An order will not be created until the payment has been reviewed in the payment gateway, after which the order.created event will be dispatched.

Example payload

{
"id":205,
"object":"event",
"api_version":"1.9",
"webhook_version":"1.0",
"created_at":"2020-02-20T14:40:55.000000Z",
"type":"payment.review_opened",
"data":{
"object":{
"object":"pending_order",
"id":3,
"merchant_transaction_reference":"p1_fsmbgo8267kbcdubcdas",
"receipt_email":"[email protected]",
"account_id": 1
}
}
}