Thunder
  1. Custom stores integration
Thunder
  • Custom stores integration
    • 1. Script integration
    • 2. Webhooks integration
    • webhook
      POST
  1. Custom stores integration

webhook

Developing
POST
https://trythunder.app/api/custom/webhook

Request

Body Params application/jsonRequired

Example
{
    "event": "order.create",
    "id": "string",
    "total": 0,
    "subTotal": 0,
    "discount": 0,
    "shippingCost": 0,
    "cashOnDelivery": 0,
    "tax": 0,
    "currency": "string",
    "city": "string",
    "country": "string",
    "createdAt": "string",
    "payementStatus": "string",
    "ipAddress": "string",
    "customer": {
        "id": "string",
        "name": "string",
        "email": "string",
        "mobileCode": "string",
        "mobileNumber": "string",
        "gender": "string"
    },
    "items": [
        {
            "id": "string",
            "name": "string",
            "thumbnail": "string",
            "quantity": 0,
            "total": 0,
            "subTotal": 0,
            "tax": 0,
            "discount": 0
        }
    ]
}

Responses

🟢200Success
application/json
Body

Example
{}
Modified at 2025-12-08 13:30:11
Previous
2. Webhooks integration
Built with