Toggle Developers
HomeAcademy
  • Welcome
  • GraphQL
    • Getting started
    • Exploring our API
    • Authentication
    • API playground
    • Error handling
  • Key concepts
    • Overview
      • Orders, Transactions & Line Items
      • Card number formats
  • Basics
    • Create a card
    • Check a card balance
    • Redeem a card
  • Webhooks
    • Overview
      • Getting started
      • Authentication & responses
    • Events
      • Card.balance_adjusted
      • Card.card_reference_updated
      • Card.expiry_reminder
      • Card.registered
      • Card.send_recipient_email
      • Card.resend_recipient_email
      • Order.created
      • Order.cancelled
      • Order.send_receipt_email
      • Order.send_cancellation_email
      • Payment.failed
      • Payment.review_opened
      • Fulfilment.dispatched
  • Partner Guides
    • EPOS & Ordering
      • Overview
      • Accreditation
      • Configuration variables
      • Playground examples
      • Physical card orders
      • Custom validity rules
      • Balance check
      • Redemptions & top-ups
      • Reversals
    • Guest gratuity
      • Overview
      • Accreditation
      • Configuration variables
      • Playground examples
      • Creating a card
      • Cancelling a card
      • Register a card
    • CRM
      • Overview
      • Historic data via GraphQL
      • Real time data via webhooks
Powered by GitBook
On this page
  1. Webhooks
  2. Events

Payment.review_opened

PreviousPayment.failedNextFulfilment.dispatched

Last updated 3 years ago

This event is dispatched when a . 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":"fred@airship.co.uk",
        "account_id": 1
      }
  }
}
payment goes into review