Get All Orders
This action retrieves all orders from your CekatAI workspace. This is the default operation when the resource is set to default (lookup).
Node Configuration
| Property | Value |
|---|---|
| Node Type | n8n-nodes-base.cekatOrder |
| Resource | default (lookup) |
| Credential | CekatOpenApi |
Setup
1
Add Node
Search for Cekat Order in the n8n node panel and add it to your workflow.
2
Select Operation
The default operation retrieves all orders. No additional operation selection is needed.
3
Connect Credential
Select or create a CekatOpenApi credential with your CekatAI API key.
4
Execute
Run the node to fetch all orders.
n8n Node JSON
json
{
"parameters": {
"resource": "default"
},
"type": "n8n-nodes-base.cekatOrder",
"typeVersion": 1,
"credentials": {
"CekatOpenApi": {
"id": "YOUR_CREDENTIAL_ID",
"name": "CekatAI account"
}
}
}
Output
The node returns an array of orders:
json
[
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"order_number": "ORD-20260415-001",
"order_status": "processing",
"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"
},
"created_at": "2026-04-15T10:00:00Z"
}
]
Order Object
| Field | Type | Description |
|---|---|---|
id | string | Unique order identifier |
order_number | string | Human-readable order number |
order_status | string | Current order status |
subtotal | number | Order subtotal |
discount | number | Discount amount |
shipping_fee | number | Shipping fee |
grand_total | number | Grand total |
payment_type | string | Payment type (e.g., full_payment) |
payment_method | string | Payment method (e.g., bank_transfer) |
contact | object | Associated contact information |
created_at | string | Creation timestamp |
Use Cases
- List all orders for reporting and analytics
- Sync orders to external systems on a schedule
- Build dashboards from order data
For retrieving a single order by ID, use the Get Order action instead.
