seaTable.json•6.78 kB
{
"nodeType": "n8n-nodes-base.seaTable",
"displayName": "SeaTable",
"description": "Consume the SeaTable API",
"version": 1,
"properties": [
{
"name": "tableName",
"displayName": "Table Name or ID",
"type": "options",
"default": "",
"description": "The name of SeaTable table to access. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
"placeholder": "Name of table",
"required": true,
"displayOptions": {
"hide": {
"operation": [
"get"
]
}
}
},
{
"name": "tableId",
"displayName": "Table Name or ID",
"type": "options",
"default": "",
"description": "The name of SeaTable table to access. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
"placeholder": "Name of table",
"required": true,
"displayOptions": {
"show": {
"operation": [
"get"
]
}
}
},
{
"name": "rowId",
"displayName": "Row ID",
"type": "string",
"default": "",
"displayOptions": {
"show": {
"operation": [
"update"
]
}
}
},
{
"name": "fieldsToSend",
"displayName": "Data to Send",
"type": "options",
"default": "defineBelow",
"description": "Use when node input properties match destination column names",
"options": [
{
"name": "Auto-Map Input Data to Columns",
"value": "autoMapInputData",
"description": "Use when node input properties match destination column names"
},
{
"name": "Define Below for Each Column",
"value": "defineBelow",
"description": "Set the value for each destination column"
}
],
"displayOptions": {
"show": {
"operation": [
"create",
"update"
]
}
}
},
{
"name": "inputsToIgnore",
"displayName": "Inputs to Ignore",
"type": "string",
"default": "",
"description": "List of input properties to avoid sending, separated by commas. Leave empty to send all properties.",
"placeholder": "Enter properties...",
"displayOptions": {
"show": {
"operation": [
"create",
"update"
],
"fieldsToSend": [
"autoMapInputData"
]
}
}
},
{
"name": "columnsUi",
"displayName": "Columns to Send",
"type": "fixedCollection",
"default": {},
"description": "Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>",
"placeholder": "Add Column",
"typeOptions": {
"multipleValues": true
},
"displayOptions": {
"show": {
"operation": [
"create",
"update"
],
"fieldsToSend": [
"defineBelow"
]
}
}
},
{
"name": "returnAll",
"displayName": "Return All",
"type": "boolean",
"default": true,
"description": "Whether to return all results or only up to a given limit",
"displayOptions": {
"show": {
"operation": [
"getAll"
]
}
}
},
{
"name": "limit",
"displayName": "Limit",
"type": "number",
"default": 50,
"description": "Max number of results to return",
"typeOptions": {
"minValue": 1,
"maxValue": 100
},
"displayOptions": {
"show": {
"operation": [
"getAll"
],
"returnAll": [
false
]
}
}
},
{
"name": "filters",
"displayName": "Filters",
"type": "collection",
"default": {},
"description": "Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>",
"placeholder": "Add Filter",
"options": [
{
"name": "view_name",
"displayName": "View Name or ID",
"type": "options",
"default": "",
"description": "Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"
}
],
"displayOptions": {
"show": {
"operation": [
"getAll"
]
}
}
},
{
"name": "options",
"displayName": "Options",
"type": "collection",
"default": {},
"description": "Whether the link column in the returned row is the ID of the linked row or the name of the linked row",
"placeholder": "Add option",
"options": [
{
"name": "convert_link_id",
"displayName": "Convert Link ID",
"type": "boolean",
"default": false,
"description": "Whether the link column in the returned row is the ID of the linked row or the name of the linked row"
}
],
"displayOptions": {
"show": {
"operation": [
"getAll"
]
}
}
},
{
"name": "operation",
"displayName": "Operation",
"type": "options",
"default": "create",
"description": "Create a row",
"options": [
{
"name": "Create",
"value": "create",
"description": "Create a row"
},
{
"name": "Delete",
"value": "delete",
"description": "Delete a row"
},
{
"name": "Get",
"value": "get",
"description": "Get a row"
},
{
"name": "Get Many",
"value": "getAll",
"description": "Get many rows"
},
{
"name": "Update",
"value": "update",
"description": "Update a row"
}
]
},
{
"name": "resource",
"displayName": "Resource",
"type": "options",
"default": "row",
"options": [
{
"name": "Row",
"value": "row"
}
]
}
],
"credentialsConfig": [
{
"name": "seaTableApi",
"required": true
},
{
"name": "resource",
"required": false
}
],
"io": {
"inputs": [],
"outputs": [],
"outputNames": [],
"hints": {}
},
"wiring": {
"role": "generic",
"requires": [],
"optional": [],
"consumedBy": [],
"consumes": [],
"produces": []
}
}