In a sandbox environment, how can I simulate receiving a successful payment webhook request without using a handheld terminal?

Due to other reasons, we haven’t been able to obtain the terminal device yet. However, we have already started the development work on the terminal API.
The current issue we’re facing is that without the terminal device, we would still like to receive a webhook notification for a successful checkout.
How can we achieve this to proceed with our testing and development work?
Thank you.

You can trigger webhooks in sandbox with our test value 9fa747a2-25ff-48ee-b078-04381f7c828f as the device_id of a checkout. The amount will need to be under $25 but it will trigger webhook events. For example:

{
    "idempotency_key": "{{$guid}}",
    "checkout": {
      "amount_money": {
        "amount": 200,
        "currency": "USD"
      },
      "payment_options": {
        "autocomplete": false,
        "accept_partial_authorization": true
      },
      "device_options": {
        "device_id": "9fa747a2-25ff-48ee-b078-04381f7c828f
"
      },
      "order_id": "{{order_id}}"
    }
  }

:slight_smile: