Get All Boards
This action retrieves all CRM boards (pipelines) from your CekatAI workspace. This is the default operation when no operation is specified.
Node Configuration
| Property | Value |
|---|---|
| Node Type | n8n-nodes-base.cekatCrm |
| Resource | (default — lookup) |
| Operation | (default — list all) |
| Credential | CekatOpenApi |
Setup
1
Add Node
Search for Cekat CRM in the n8n node panel and add it to your workflow.
2
Leave Default Settings
No operation parameter is needed — the default retrieves all boards.
3
Connect Credential
Select or create a CekatOpenApi credential with your CekatAI API key.
4
Execute
Run the node to fetch all boards.
n8n Node JSON
json
{
"parameters": {},
"type": "n8n-nodes-base.cekatCrm",
"typeVersion": 1,
"credentials": {
"CekatOpenApi": {
"id": "YOUR_CREDENTIAL_ID",
"name": "CekatAI account"
}
}
}
Output
The node returns an array of all CRM boards:
json
[
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "DEALS",
"column_name": "Deal",
"item_display": "modal",
"icon": "Handshake",
"visibility": "public",
"type": "board",
"position": 19990,
"created_at": "2025-08-20T15:50:00.709132+00:00",
"updated_at": "2026-03-30T05:45:21.434+00:00",
"business_id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
{
"id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"name": "Partners",
"column_name": "Partner",
"item_display": "modal",
"icon": "Users",
"visibility": "public",
"type": "board",
"position": 60000
}
]
Board Object
| Field | Type | Description |
|---|---|---|
id | string (UUID) | Unique board identifier |
name | string | Board display name |
column_name | string | Singular name for items (e.g., "Deal") |
item_display | string | Display mode: modal |
icon | string | Icon name |
visibility | string | public or restricted |
type | string | Board type |
position | integer | Sort position |
created_at | string | Creation timestamp |
updated_at | string | Last update timestamp |
business_id | string | Business account ID |
Use Cases
- List all available boards before performing item operations
- Dynamically select a board ID for downstream actions
- Synchronize board structure to external systems
Use the Get Board action instead if you need full column details for a specific board.
