Webhook Endpoint
POST https://n8n.dnadi.food/webhook/external-order-intake
Payload Mapping
{
"order_type": "new | modify | urgent | cancel | support",
"source": "easy_orders | external_platform | custom_source",
"order_number": "MJ-10025",
"customer_name": "Customer Name",
"address": "Full delivery address",
"phone": "010xxxxxxxx",
"alternate_phone": "01xxxxxxxxx",
"requested_products": [
{ "name": "Product Name", "qty": 1, "notes": "" }
],
"customer_notes": "Customer notes",
"raw_customer_message": "Raw customer message text",
"customer_message_summary": "Customer message summary"
}
- order_type Required
- source Required
- order_number Optional
- customer_name Required
- address Required
- phone Required
- alternate_phone Optional
- requested_products Required
- customer_notes Optional
- raw_customer_message Required
- customer_message_summary Required
Allowed values for order_type: new, modify, urgent, cancel, support.