Getting Started
Menu
Catalog Update
Menu
Order Management
Menu
Total Sales
Menu
Suppliers Details
Menu
Buyers Details
Menu
Order Management
New Order Created - Webhook
The New Order Created webhook notifies your system whenever a new order is created in Zestt.
To ensure seamless delivery of our webhooks and prevent them from being blocked by your firewall, please whitelist/allowlist the following IP address on your receiving server: 35.246.144.14
Before activating the webhook, you must provide the following configuration.
| Parameter | Type | Required | Description |
|---|---|---|---|
| Webhook URL | String | Yes | The HTTPS endpoint that will receive notifications for newly created orders. |
| API Key | String | No | If provided, Zestt will include this API Key in the request header of every webhook call. The receiving system can validate the key to authenticate the request. |
Statuses list
| Field Name | status number |
|---|---|
| Drafts | 0 |
| PendingForApproval | 1 |
| Approved | 2 |
| Rejected | 3 |
| Canceled | 4 |
| AcceptedPartial | 7 |
| CanceledAfterApproved | 11 |
| WaitSend | 16 |
Trigger Conditions
The webhook is triggered only when an order is issued and enters the PendingForApproval status.
Only orders with Status = 1 (PendingForApproval) are sent through the webhook.
Orders in any other status are not sent.
Request Sample:
{
"id": "2335619",//Internal order id
"supplierId": 72223,//Supplier operator number
"buyerId": 71148,//Buyer operator number
"supplierName": "מאפייה אחת עשרה",
"buyerName": "שניצי קפה",
"status": 1,//order status`
"type": 2,
"number": "71148-80",
"date_sent": "2026-06-10",
"customer_number": "777077070",
"date_delivery": "2026-06-10",
"description": null,
"totalNoVATAfterDiscount": 496.4,
"totalWithVATAfterDiscount": 585.752,
"items": [
{
"cat_number": "300",
"name": "בייבי ג'בטה לבן",
"unitQuantity": 1,//item's catalog quantity
"unitQuantityType": 1,
"quantity": 1, //Quantity in order
"price": 80,//Unit price
"totalQuantity": 1,//Total quantity in order
"totalPrice": 80,//Total price in order
"withoutVAT": false,
"orderId": null,
"expenseAccount": null,
"discount_percentage": null,
"clientCat": null,
"supplier_categories": [],
"buyer_categories": []
},
{
"cat_number": "1315",
"name": "ביס בייגל שאור",
"unitQuantity": 1,
"unitQuantityType": 0,
"quantity": 15,
"price": 23.76,
"totalQuantity": 15,
"totalPrice": 356.4,
"withoutVAT": false,
"orderId": null,
"expenseAccount": null,
"discount_percentage": 1,
"clientCat": null,
"supplier_categories": [],
"buyer_categories": []
},
{
"cat_number": "32",
"name": "בדיקה מוחרגת 2 ",
"unitQuantity": 1,
"unitQuantityType": 0,
"quantity": 2,
"price": 30,
"totalQuantity": 2,
"totalPrice": 60,
"withoutVAT": false,
"orderId": null,
"expenseAccount": null,
"discount_percentage": null,
"clientCat": null,
"supplier_categories": [],
"buyer_categories": []
}
],
"related_documents": null,
"attached_files": null,
"procurement_type": null,
"export_status": null,
"has_refund_request": null,
"expense_accounts": null,
"assignment_number": null,
"document_discount": null,
"discount_type": null,
"ERPSupplierNumber": null,
"latestUpdateDate": null
}
Status: 200