curl --request POST \
--url https://webhook.sit.onedigilta.in/webhook/event/send \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"contact": {
"name": "John Doe",
"email": "john@example.com",
"whatsapp_number": "+1234567890"
},
"event": {
"code": "ABUNDANT_CART",
"name": "on adondant cart",
"data": {
"cart_id": "123456",
"cart_products": [
{
"product_id": "prod_001",
"product_name": "Wireless Mouse",
"quantity": 1,
"price": 25.99
},
{
"product_id": "prod_002",
"product_name": "USB-C Hub",
"quantity": 1,
"price": 45
}
]
}
}
}
'