On Order Created
This trigger fires your n8n workflow whenever a new order is created in CekatAI.
Node Configuration
| Property | Value |
|---|---|
| Node Type | n8n-nodes-base.cekatOrderTrigger |
| Event | order.created |
| Credential | CekatOpenApi |
Setup
1
Add Node
Search for Cekat Order Trigger in the n8n node panel and add it to your workflow.
2
Select Event
In the node settings, select On order created from the events dropdown.
3
Connect Credential
Select or create a CekatOpenApi credential with your CekatAI API key.
4
Activate
Activate the workflow. The trigger will now listen for new orders.
n8n Node JSON
json
{
"parameters": {
"events": ["order.created"]
},
"type": "n8n-nodes-base.cekatOrderTrigger",
"typeVersion": 1,
"credentials": {
"CekatOpenApi": {
"id": "YOUR_CREDENTIAL_ID",
"name": "CekatAI account"
}
}
}
Output
When triggered, the node outputs the created order data:
json
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"order_number": "ORD-20260415-001",
"order_status": "pending",
"subtotal": 150000,
"discount": 10000,
"shipping_fee": 15000,
"grand_total": 155000,
"payment_type": "full_payment",
"payment_method": "bank_transfer",
"contact": {
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"display_name": "John Smith",
"phone_number": "+62812345678"
},
"conversation_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"created_at": "2026-04-15T10:00:00Z"
}
Use Cases
- Notify your team when a new order comes in
- Automatically create a CRM item for each new order
- Auto-confirm orders that meet certain criteria
- Send a WhatsApp confirmation message to the customer
Combine this trigger with the Create Order or Update Order action to automatically confirm new orders based on payment method or order value.
