Flow
Node: flow · Full type: n8n-nodes-base.flow · Version: 1
Credentials
flowApi (alias: @flow)
CREDENTIAL @flow = flowApi "My Flow"
Operations
Resource: task
create
| Parameter |
Type |
Default |
Details |
workspaceId |
string |
"" |
required |
name |
string |
"" |
required |
additionalFields |
collection |
{} |
keys: ownerid, listID, startsOn, dueOn, mirrorParentSubscribers, mirrorParentTags, ... |
update
| Parameter |
Type |
Default |
Details |
workspaceId |
string |
"" |
required |
taskId |
string |
"" |
required |
updateFields |
collection |
{} |
keys: name, completed, ownerid, listID, startsOn, dueOn, ... |
get
| Parameter |
Type |
Default |
Details |
taskId |
string |
"" |
required |
filters |
collection |
{} |
keys: include |
getAll
| Parameter |
Type |
Default |
Details |
returnAll |
boolean |
false |
|
limit |
number |
50 |
|
filters |
collection |
{} |
keys: include, order, workspaceId, createdBefore, createdAfter, updateBefore, ... |
Parameter Details
additionalFields children:
| Parameter |
Type |
Default |
Details |
ownerid |
string |
"" |
|
listID |
string |
"" |
|
startsOn |
dateTime |
"" |
|
dueOn |
dateTime |
"" |
|
mirrorParentSubscribers |
boolean |
false |
|
mirrorParentTags |
boolean |
false |
|
noteContent |
string |
"" |
|
noteMimeType |
options |
"text/plain" |
text/plain, text/x-markdown, text/html |
parentId |
string |
"" |
|
positionList |
number |
0 |
|
positionUpcoming |
number |
0 |
|
position |
number |
0 |
|
sectionId |
string |
"" |
|
tags |
string |
"" |
|
updateFields children:
| Parameter |
Type |
Default |
Details |
name |
string |
"" |
|
completed |
boolean |
false |
|
ownerid |
string |
"" |
|
listID |
string |
"" |
|
startsOn |
dateTime |
"" |
|
dueOn |
dateTime |
"" |
|
mirrorParentSubscribers |
boolean |
false |
|
mirrorParentTags |
boolean |
false |
|
noteContent |
string |
"" |
|
noteMimeType |
options |
"text/plain" |
text/plain, text/x-markdown, text/html |
parentId |
string |
"" |
|
positionList |
number |
0 |
|
positionUpcoming |
number |
0 |
|
position |
number |
0 |
|
sectionId |
string |
"" |
|
tags |
string |
"" |
|
filters children:
| Parameter |
Type |
Default |
Details |
include |
multiOptions |
[] |
multi: schedule, files, file_associations, parent |
Example
NODE "flow" @flow AS "Flow" {
resource: "task",
operation: "get",
workspaceId: {{ $json.workspaceId }},
name: {{ $json.name }},
taskId: {{ $json.taskId }}
}