# Payment.review\_opened

This event is dispatched when a [payment goes into review](http://academy.usetoggle.com/en/articles/2728810-reducing-chargeback-fraud-with-stripe-radar-toggle). 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

```javascript
{
  "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":"fred@airship.co.uk",
        "account_id": 1
      }
  }
}
```
