seaTableTrigger.json•3.41 kB
{
"nodeType": "n8n-nodes-base.seaTableTrigger",
"displayName": "SeaTableTrigger",
"description": null,
"version": "2",
"properties": [
{
"name": "event",
"displayName": "Event",
"type": "options",
"default": "newRow",
"description": "Trigger on newly created rows",
"options": [
{
"name": "New Row",
"value": "newRow",
"description": "Trigger on newly created rows"
},
{
"name": "New or Updated Row",
"value": "updatedRow",
"description": "Trigger has recently created or modified rows"
},
{
"name": "New Signature",
"value": "newAsset",
"description": "Trigger on new signatures"
}
]
},
{
"name": "tableName",
"displayName": "Table Name",
"type": "options",
"default": "",
"description": "The name of SeaTable table to access. Choose from the list, or specify the name using an <a href=\"https://docs.n8n.io/code-examples/expressions/\">expression</a>.",
"required": true
},
{
"name": "viewName",
"displayName": "View Name",
"type": "options",
"default": "",
"description": "The name of SeaTable view to access. Choose from the list, or specify the name using an <a href=\"https://docs.n8n.io/code-examples/expressions/\">expression</a>.",
"displayOptions": {
"show": {
"event": [
"newRow",
"updatedRow"
]
}
}
},
{
"name": "assetColumn",
"displayName": "Signature Column",
"type": "options",
"default": "",
"description": "Select the digital-signature column that should be tracked. Choose from the list, or specify the name using an <a href=\"https://docs.n8n.io/code-examples/expressions/\">expression</a>.",
"required": true,
"displayOptions": {
"show": {
"event": [
"newAsset"
]
}
}
},
{
"name": "options",
"displayName": "Options",
"type": "collection",
"default": {},
"description": "Whether to return a simplified version of the response instead of the raw data",
"placeholder": "Add Option",
"options": [
{
"name": "simple",
"displayName": "Simplify",
"type": "boolean",
"default": true,
"description": "Whether to return a simplified version of the response instead of the raw data"
}
],
"displayOptions": {
"show": {
"/event": [
"newRow",
"updatedRow"
]
}
}
},
{
"name": "notice",
"displayName": "\"Fetch Test Event\" returns max. three items of the last hour.",
"type": "notice",
"default": ""
}
],
"credentialsConfig": [
{
"name": "seaTableApi",
"required": true
},
{
"name": "event",
"required": false
},
{
"name": "tableName",
"required": true
},
{
"name": "notice",
"required": false
}
],
"io": {
"inputs": [],
"outputs": [],
"outputNames": [],
"hints": {}
},
"wiring": {
"role": "generic",
"requires": [],
"optional": [],
"consumedBy": [],
"consumes": [],
"produces": []
}
}