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 Refunded

{
    "type": "string",
    "orderUpdate": {
        "orderUuid": "string",
        "platformUuid": "string",
        "externalOrderId": "string",
        "status": "string",
        "paymentStatus": "string",
        "fulfillmentStatus": "string",
        "products": [
            {
                "productUuid": "string",
                "orderProductType": "string",
                "refundAmount": 0
            }
        ],
        "orderShortCode": "string",
        "totalRefunded": 0,
        "amountRemaining": 0
    },
    "customerUpdate": {
        "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