Documentation
  1. webhooks
Documentation
  • Introduction
  • Webhook
  • Integrations
    • REST Integration
    • Nodejs
    • Wordpress
  • Create Checkout Session
    POST
  • Schemas
    • webhooks
      • Webhook | Order Created
      • Webhook | Order Abandoned
      • Webhook | Order Refunded
      • Webhook | Order Failed
    • Cart Session Request
    • Cart Session Response
  1. webhooks

Webhook | Order Failed

{
    "type": "string",
    "orderUpdate": {
        "orderUuid": "string",
        "platformUuid": "string",
        "paymentStatus": "string",
        "products": [
            {
                "productUuid": "string",
                "title": "string",
                "price": 0,
                "quantity": 0,
                "externalProductId": "string",
                "externalVariantId": "string",
                "orderProductType": "string",
                "extra": [
                    "string"
                ]
            }
        ],
        "orderShortCode": "string",
        "failureReason": "string",
        "meta": {}
    },
    "customerUpdate": {
        "firstName": "string",
        "lastName": "string",
        "phoneNumber": "string",
        "email": "string",
        "shipping": {
            "first_name": "string",
            "last_name": "string",
            "address_1": "string",
            "address_2": "string",
            "city": "string",
            "state": "string",
            "postcode": "string",
            "country": "string",
            "ip": null
        }
    }
}
Built with