n8n-nodes-base 1.63.0 → 1.64.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build.tsbuildinfo +1 -1
- package/dist/credentials/GongApi.credentials.d.ts +9 -0
- package/dist/credentials/GongApi.credentials.js +53 -0
- package/dist/credentials/GongApi.credentials.js.map +1 -0
- package/dist/credentials/GongOAuth2Api.credentials.d.ts +8 -0
- package/dist/credentials/GongOAuth2Api.credentials.js +59 -0
- package/dist/credentials/GongOAuth2Api.credentials.js.map +1 -0
- package/dist/known/credentials.json +18 -0
- package/dist/known/nodes.json +4 -0
- package/dist/methods/defined.json +1 -1
- package/dist/methods/referenced.json +1 -1
- package/dist/nodes/Code/JsTaskRunnerSandbox.d.ts +1 -1
- package/dist/nodes/Code/JsTaskRunnerSandbox.js +18 -31
- package/dist/nodes/Code/JsTaskRunnerSandbox.js.map +1 -1
- package/dist/nodes/Code/errors/WrappedExecutionError.d.ts +8 -0
- package/dist/nodes/Code/errors/WrappedExecutionError.js +27 -0
- package/dist/nodes/Code/errors/WrappedExecutionError.js.map +1 -0
- package/dist/nodes/Gong/GenericFunctions.d.ts +9 -0
- package/dist/nodes/Gong/GenericFunctions.js +175 -0
- package/dist/nodes/Gong/GenericFunctions.js.map +1 -0
- package/dist/nodes/Gong/Gong.node.d.ts +10 -0
- package/dist/nodes/Gong/Gong.node.js +139 -0
- package/dist/nodes/Gong/Gong.node.js.map +1 -0
- package/dist/nodes/Gong/Gong.node.json +18 -0
- package/dist/nodes/Gong/descriptions/CallDescription.d.ts +3 -0
- package/dist/nodes/Gong/descriptions/CallDescription.js +551 -0
- package/dist/nodes/Gong/descriptions/CallDescription.js.map +1 -0
- package/dist/nodes/Gong/descriptions/UserDescription.d.ts +3 -0
- package/dist/nodes/Gong/descriptions/UserDescription.js +265 -0
- package/dist/nodes/Gong/descriptions/UserDescription.js.map +1 -0
- package/dist/nodes/Gong/descriptions/index.d.ts +2 -0
- package/dist/nodes/Gong/descriptions/index.js +19 -0
- package/dist/nodes/Gong/descriptions/index.js.map +1 -0
- package/dist/nodes/Gong/gong.svg +4 -0
- package/dist/nodes/Gong/test/mocks.d.ts +540 -0
- package/dist/nodes/Gong/test/mocks.js +772 -0
- package/dist/nodes/Gong/test/mocks.js.map +1 -0
- package/dist/nodes/Google/Ads/CampaignDescription.js +2 -2
- package/dist/nodes/Google/Ads/GoogleAds.node.js +1 -1
- package/dist/nodes/Google/Calendar/EventDescription.js +58 -1
- package/dist/nodes/Google/Calendar/EventDescription.js.map +1 -1
- package/dist/nodes/Google/Calendar/GoogleCalendar.node.d.ts +1 -1
- package/dist/nodes/Google/Calendar/GoogleCalendar.node.js +21 -5
- package/dist/nodes/Google/Calendar/GoogleCalendar.node.js.map +1 -1
- package/dist/nodes/Google/Sheet/v2/actions/sheet/append.operation.js +3 -1
- package/dist/nodes/Google/Sheet/v2/actions/sheet/append.operation.js.map +1 -1
- package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js +3 -3
- package/dist/nodes/HttpRequest/V3/HttpRequestV3.node.js.map +1 -1
- package/dist/nodes/Line/Line.node.js +6 -0
- package/dist/nodes/Line/Line.node.js.map +1 -1
- package/dist/nodes/MySql/v2/helpers/utils.js +19 -19
- package/dist/nodes/MySql/v2/helpers/utils.js.map +1 -1
- package/dist/nodes/N8nTrigger/N8nTrigger.node.js +23 -2
- package/dist/nodes/N8nTrigger/N8nTrigger.node.js.map +1 -1
- package/dist/nodes/Set/v2/SetV2.node.js +38 -0
- package/dist/nodes/Set/v2/SetV2.node.js.map +1 -1
- package/dist/nodes/Strava/GenericFunctions.js +1 -1
- package/dist/nodes/Strava/GenericFunctions.js.map +1 -1
- package/dist/nodes/Strava/StravaTrigger.node.js +4 -5
- package/dist/nodes/Strava/StravaTrigger.node.js.map +1 -1
- package/dist/nodes/Transform/RemoveDuplicates/RemoveDuplicates.node.d.ts +3 -4
- package/dist/nodes/Transform/RemoveDuplicates/RemoveDuplicates.node.js +11 -183
- package/dist/nodes/Transform/RemoveDuplicates/RemoveDuplicates.node.js.map +1 -1
- package/dist/nodes/Transform/RemoveDuplicates/utils.d.ts +2 -1
- package/dist/nodes/Transform/RemoveDuplicates/utils.js +89 -0
- package/dist/nodes/Transform/RemoveDuplicates/utils.js.map +1 -1
- package/dist/nodes/Transform/RemoveDuplicates/v1/RemoveDuplicatesV1.node.d.ts +6 -0
- package/dist/nodes/Transform/RemoveDuplicates/v1/RemoveDuplicatesV1.node.js +111 -0
- package/dist/nodes/Transform/RemoveDuplicates/v1/RemoveDuplicatesV1.node.js.map +1 -0
- package/dist/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.d.ts +2 -0
- package/dist/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.js +271 -0
- package/dist/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.js.map +1 -0
- package/dist/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.node.d.ts +6 -0
- package/dist/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.node.js +206 -0
- package/dist/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.node.js.map +1 -0
- package/dist/nodes/WorkflowTrigger/WorkflowTrigger.node.js +7 -0
- package/dist/nodes/WorkflowTrigger/WorkflowTrigger.node.js.map +1 -1
- package/dist/types/credentials.json +2 -0
- package/dist/types/nodes.json +12 -10
- package/package.json +7 -4
package/dist/types/nodes.json
CHANGED
|
@@ -137,13 +137,14 @@
|
|
|
137
137
|
{"displayName":"Github Trigger","name":"n8n-nodes-base.githubTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"owner\"] + \"/\" + $parameter[\"repository\"] + \": \" + $parameter[\"events\"].join(\", \")}}","description":"Starts the workflow when Github events occur","defaults":{"name":"Github Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"githubApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"]}}},{"name":"githubOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Only members with owner privileges for an organization or admin privileges for a repository can set up the webhooks this node requires.","name":"notice","type":"notice","default":""},{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"accessToken"},{"displayName":"Repository Owner","name":"owner","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"Repository Owner","name":"list","type":"list","placeholder":"Select an owner...","typeOptions":{"searchListMethod":"getUsers","searchable":true,"searchFilterRequired":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://github.com/n8n-io","extractValue":{"type":"regex","regex":"https:\\/\\/github.com\\/([-_0-9a-zA-Z]+)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/github.com\\/([-_0-9a-zA-Z]+)(?:.*)","errorMessage":"Not a valid Github URL"}}]},{"displayName":"By Name","name":"name","type":"string","placeholder":"e.g. n8n-io","validation":[{"type":"regex","properties":{"regex":"[-_a-zA-Z0-9]+","errorMessage":"Not a valid Github Owner Name"}}],"url":"=https://github.com/{{$value}}"}]},{"displayName":"Repository Name","name":"repository","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"Repository Name","name":"list","type":"list","placeholder":"Select an Repository...","typeOptions":{"searchListMethod":"getRepositories","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://github.com/n8n-io/n8n","extractValue":{"type":"regex","regex":"https:\\/\\/github.com\\/(?:[-_0-9a-zA-Z]+)\\/([-_.0-9a-zA-Z]+)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/github.com\\/(?:[-_0-9a-zA-Z]+)\\/([-_.0-9a-zA-Z]+)(?:.*)","errorMessage":"Not a valid Github Repository URL"}}]},{"displayName":"By Name","name":"name","type":"string","placeholder":"e.g. n8n","validation":[{"type":"regex","properties":{"regex":"[-_.0-9a-zA-Z]+","errorMessage":"Not a valid Github Repository Name"}}],"url":"=https://github.com/{{$parameter[\"owner\"]}}/{{$value}}"}]},{"displayName":"Events","name":"events","type":"multiOptions","options":[{"name":"*","value":"*","description":"Any time any event is triggered (Wildcard Event)"},{"name":"Check Run","value":"check_run","description":"Triggered when a check run is created, rerequested, completed, or has a requested_action"},{"name":"Check Suite","value":"check_suite","description":"Triggered when a check suite is completed, requested, or rerequested"},{"name":"Commit Comment","value":"commit_comment","description":"Triggered when a commit comment is created"},{"name":"Create","value":"create","description":"Represents a created repository, branch, or tag"},{"name":"Delete","value":"delete","description":"Represents a deleted branch or tag"},{"name":"Deploy Key","value":"deploy_key","description":"Triggered when a deploy key is added or removed from a repository"},{"name":"Deployment","value":"deployment","description":"Represents a deployment"},{"name":"Deployment Status","value":"deployment_status","description":"Represents a deployment status"},{"name":"Fork","value":"fork","description":"Triggered when a user forks a repository"},{"name":"Github App Authorization","value":"github_app_authorization","description":"Triggered when someone revokes their authorization of a GitHub App"},{"name":"Gollum","value":"gollum","description":"Triggered when a Wiki page is created or updated"},{"name":"Installation","value":"installation","description":"Triggered when someone installs (created), uninstalls (deleted), or accepts new permissions (new_permissions_accepted) for a GitHub App. When a GitHub App owner requests new permissions, the person who installed the GitHub App must accept the new permissions request."},{"name":"Installation Repositories","value":"installation_repositories","description":"Triggered when a repository is added or removed from an installation"},{"name":"Issue Comment","value":"issue_comment","description":"Triggered when an issue comment is created, edited, or deleted"},{"name":"Issues","value":"issues","description":"Triggered when an issue is opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, locked, unlocked, milestoned, or demilestoned"},{"name":"Label","value":"label","description":"Triggered when a repository's label is created, edited, or deleted"},{"name":"Marketplace Purchase","value":"marketplace_purchase","description":"Triggered when someone purchases a GitHub Marketplace plan, cancels their plan, upgrades their plan (effective immediately), downgrades a plan that remains pending until the end of the billing cycle, or cancels a pending plan change"},{"name":"Member","value":"member","description":"Triggered when a user accepts an invitation or is removed as a collaborator to a repository, or has their permissions changed"},{"name":"Membership","value":"membership","description":"Triggered when a user is added or removed from a team. Organization hooks only."},{"name":"Meta","value":"meta","description":"Triggered when the webhook that this event is configured on is deleted"},{"name":"Milestone","value":"milestone","description":"Triggered when a milestone is created, closed, opened, edited, or deleted"},{"name":"Org Block","value":"org_block","description":"Triggered when an organization blocks or unblocks a user. Organization hooks only."},{"name":"Organization","value":"organization","description":"Triggered when an organization is deleted and renamed, and when a user is added, removed, or invited to an organization. Organization hooks only."},{"name":"Page Build","value":"page_build","description":"Triggered on push to a GitHub Pages enabled branch (gh-pages for project pages, master for user and organization pages)"},{"name":"Project","value":"project","description":"Triggered when a project is created, updated, closed, reopened, or deleted"},{"name":"Project Card","value":"project_card","description":"Triggered when a project card is created, edited, moved, converted to an issue, or deleted"},{"name":"Project Column","value":"project_column","description":"Triggered when a project column is created, updated, moved, or deleted"},{"name":"Public","value":"public","description":"Triggered when a private repository is open sourced"},{"name":"Pull Request","value":"pull_request","description":"Triggered when a pull request is assigned, unassigned, labeled, unlabeled, opened, edited, closed, reopened, synchronize, ready_for_review, locked, unlocked, a pull request review is requested, or a review request is removed"},{"name":"Pull Request Review","value":"pull_request_review","description":"Triggered when a pull request review is submitted into a non-pending state, the body is edited, or the review is dismissed"},{"name":"Pull Request Review Comment","value":"pull_request_review_comment","description":"Triggered when a comment on a pull request's unified diff is created, edited, or deleted (in the Files Changed tab)"},{"name":"Push","value":"push","description":"Triggered on a push to a repository branch. Branch pushes and repository tag pushes also trigger webhook push events. This is the default event."},{"name":"Release","value":"release","description":"Triggered when a release is published, unpublished, created, edited, deleted, or prereleased"},{"name":"Repository","value":"repository","description":"Triggered when a repository is created, archived, unarchived, renamed, edited, transferred, made public, or made private. Organization hooks are also triggered when a repository is deleted."},{"name":"Repository Import","value":"repository_import","description":"Triggered when a successful, cancelled, or failed repository import finishes for a GitHub organization or a personal repository"},{"name":"Repository Vulnerability Alert","value":"repository_vulnerability_alert","description":"Triggered when a security alert is created, dismissed, or resolved"},{"name":"Security Advisory","value":"security_advisory","description":"Triggered when a new security advisory is published, updated, or withdrawn"},{"name":"Star","value":"star","description":"Triggered when a star is added or removed from a repository"},{"name":"Status","value":"status","description":"Triggered when the status of a Git commit changes"},{"name":"Team","value":"team","description":"Triggered when an organization's team is created, deleted, edited, added_to_repository, or removed_from_repository. Organization hooks only."},{"name":"Team Add","value":"team_add","description":"Triggered when a repository is added to a team"},{"name":"Watch","value":"watch","description":"Triggered when someone stars a repository"}],"required":true,"default":[],"description":"The events to listen to"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Insecure SSL","name":"insecureSSL","type":"boolean","default":false,"description":"Whether the SSL certificate of the n8n host be verified by GitHub when delivering payloads"}]}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.githubtrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/github/"}]}},"iconUrl":{"light":"icons/n8n-nodes-base/dist/nodes/Github/github.svg","dark":"icons/n8n-nodes-base/dist/nodes/Github/github.dark.svg"}},
|
|
138
138
|
{"displayName":"GitLab","name":"n8n-nodes-base.gitlab","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Retrieve data from GitLab API","defaults":{"name":"GitLab"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"gitlabApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"]}}},{"name":"gitlabOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"accessToken"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"File","value":"file"},{"name":"Issue","value":"issue"},{"name":"Release","value":"release"},{"name":"Repository","value":"repository"},{"name":"User","value":"user"}],"default":"issue"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["issue"]}},"options":[{"name":"Create","value":"create","description":"Create a new issue","action":"Create an issue"},{"name":"Create Comment","value":"createComment","description":"Create a new comment on an issue","action":"Create a comment on an issue"},{"name":"Edit","value":"edit","description":"Edit an issue","action":"Edit an issue"},{"name":"Get","value":"get","description":"Get the data of a single issue","action":"Get an issue"},{"name":"Lock","value":"lock","description":"Lock an issue","action":"Lock an issue"}],"default":"create"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["repository"]}},"options":[{"name":"Get","value":"get","description":"Get the data of a single repository","action":"Get a repository"},{"name":"Get Issues","value":"getIssues","description":"Returns issues of a repository","action":"Get issues of a repository"}],"default":"getIssues"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["user"]}},"options":[{"name":"Get Repositories","value":"getRepositories","description":"Returns the repositories of a user","action":"Get a user's repositories"}],"default":"getRepositories"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["release"]}},"options":[{"name":"Create","value":"create","description":"Create a new release","action":"Create a release"},{"name":"Delete","value":"delete","description":"Delete a release","action":"Delete a release"},{"name":"Get","value":"get","description":"Get a release","action":"Get a release"},{"name":"Get Many","value":"getAll","description":"Get many releases","action":"Get many releases"},{"name":"Update","value":"update","description":"Update a release","action":"Update a release"}],"default":"create"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["file"]}},"options":[{"name":"Create","value":"create","description":"Create a new file in repository","action":"Create a file"},{"name":"Delete","value":"delete","description":"Delete a file in repository","action":"Delete a file"},{"name":"Edit","value":"edit","description":"Edit a file in repository","action":"Edit a file"},{"name":"Get","value":"get","description":"Get the data of a single file","action":"Get a file"},{"name":"List","value":"list","description":"List contents of a folder","action":"List files"}],"default":"create"},{"displayName":"Project Owner","name":"owner","type":"string","default":"","required":true,"placeholder":"n8n-io","description":"User, group or namespace of the project"},{"displayName":"Project Name","name":"repository","type":"string","default":"","required":true,"displayOptions":{"hide":{"resource":["user"],"operation":["getRepositories"]}},"placeholder":"n8n","description":"The name of the project"},{"displayName":"Title","name":"title","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["create"],"resource":["issue"]}},"description":"The title of the issue"},{"displayName":"Body","name":"body","type":"string","typeOptions":{"rows":5},"default":"","displayOptions":{"show":{"operation":["create"],"resource":["issue"]}},"description":"The body of the issue"},{"displayName":"Due Date","name":"due_date","type":"dateTime","displayOptions":{"show":{"operation":["create"],"resource":["issue"]}},"default":"","description":"Due Date for issue"},{"displayName":"Labels","name":"labels","type":"collection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Label"},"displayOptions":{"show":{"operation":["create"],"resource":["issue"]}},"default":{"label":""},"options":[{"displayName":"Label","name":"label","type":"string","default":"","description":"Label to add to issue"}]},{"displayName":"Assignees","name":"assignee_ids","type":"collection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Assignee"},"displayOptions":{"show":{"operation":["create"],"resource":["issue"]}},"default":{"assignee":""},"options":[{"displayName":"Assignee","name":"assignee","type":"number","default":0,"description":"User ID to assign issue to"}]},{"displayName":"Issue Number","name":"issueNumber","type":"number","default":0,"required":true,"displayOptions":{"show":{"operation":["createComment"],"resource":["issue"]}},"description":"The number of the issue on which to create the comment on"},{"displayName":"Body","name":"body","type":"string","typeOptions":{"rows":5},"displayOptions":{"show":{"operation":["createComment"],"resource":["issue"]}},"default":"","description":"The body of the comment"},{"displayName":"Issue Number","name":"issueNumber","type":"number","default":0,"required":true,"displayOptions":{"show":{"operation":["edit"],"resource":["issue"]}},"description":"The number of the issue edit"},{"displayName":"Edit Fields","name":"editFields","type":"collection","typeOptions":{"multipleValueButtonText":"Add Field"},"displayOptions":{"show":{"operation":["edit"],"resource":["issue"]}},"default":{},"options":[{"displayName":"Title","name":"title","type":"string","default":"","description":"The title of the issue"},{"displayName":"Body","name":"description","type":"string","typeOptions":{"rows":5},"default":"","description":"The body of the issue"},{"displayName":"State","name":"state","type":"options","options":[{"name":"Closed","value":"closed","description":"Set the state to \"closed\""},{"name":"Open","value":"open","description":"Set the state to \"open\""}],"default":"open","description":"The state to set"},{"displayName":"Labels","name":"labels","type":"collection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Label"},"default":{"label":""},"options":[{"displayName":"Label","name":"label","type":"string","default":"","description":"Label to add to issue"}]},{"displayName":"Assignees","name":"assignee_ids","type":"collection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Assignee"},"default":{"assignee":""},"options":[{"displayName":"Assignees","name":"assignee","type":"string","default":"","description":"User to assign issue too"}]},{"displayName":"Due Date","name":"due_date","type":"dateTime","default":"","description":"Due Date for issue"}]},{"displayName":"Issue Number","name":"issueNumber","type":"number","default":0,"required":true,"displayOptions":{"show":{"operation":["get"],"resource":["issue"]}},"description":"The number of the issue get data of"},{"displayName":"Issue Number","name":"issueNumber","type":"number","default":0,"required":true,"displayOptions":{"show":{"operation":["lock"],"resource":["issue"]}},"description":"The number of the issue to lock"},{"displayName":"Lock Reason","name":"lockReason","type":"options","displayOptions":{"show":{"operation":["lock"],"resource":["issue"]}},"options":[{"name":"Off-Topic","value":"off-topic","description":"The issue is Off-Topic"},{"name":"Too Heated","value":"too heated","description":"The discussion is too heated"},{"name":"Resolved","value":"resolved","description":"The issue got resolved"},{"name":"Spam","value":"spam","description":"The issue is spam"}],"default":"resolved","description":"The reason to lock the issue"},{"displayName":"Tag","name":"releaseTag","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["create"],"resource":["release"]}},"description":"The tag of the release"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","typeOptions":{"multipleValueButtonText":"Add Field"},"displayOptions":{"show":{"operation":["create"],"resource":["release"]}},"default":{},"options":[{"displayName":"Name","name":"name","type":"string","default":"","description":"The name of the release"},{"displayName":"Description","name":"description","type":"string","typeOptions":{"rows":5},"default":"","description":"The description of the release"},{"displayName":"Ref","name":"ref","type":"string","default":"","description":"If Tag doesn’t exist, the release will be created from Ref. It can be a commit SHA, another tag name, or a branch name."}]},{"displayName":"Project ID","name":"projectId","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["delete","get"],"resource":["release"]}},"description":"The ID or URL-encoded path of the project"},{"displayName":"Tag Name","name":"tag_name","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["delete","get"],"resource":["release"]}},"description":"The Git tag the release is associated with"},{"displayName":"Project ID","name":"projectId","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["getAll"],"resource":["release"]}},"description":"The ID or URL-encoded path of the project"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["release","file","repository"],"operation":["getAll","list","getIssues"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["release","file","repository"],"operation":["getAll","list","getIssues"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":20,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","typeOptions":{"multipleValueButtonText":"Add Field"},"displayOptions":{"show":{"operation":["getAll"],"resource":["release"]}},"default":{},"options":[{"displayName":"Order By","name":"order_by","type":"options","options":[{"name":"Created At","value":"created_at"},{"name":"Released At","value":"released_at"}],"default":"released_at","description":"The field to use as order"},{"displayName":"Sort","name":"sort","type":"options","options":[{"name":"ASC","value":"asc"},{"name":"DESC","value":"desc"}],"default":"desc","description":"The direction of the order. ."}]},{"displayName":"Project ID","name":"projectId","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["update"],"resource":["release"]}},"description":"The ID or URL-encoded path of the project"},{"displayName":"Tag Name","name":"tag_name","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["update"],"resource":["release"]}},"description":"The Git tag the release is associated with"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","typeOptions":{"multipleValueButtonText":"Add Field"},"displayOptions":{"show":{"operation":["update"],"resource":["release"]}},"default":{},"options":[{"displayName":"Name","name":"name","type":"string","default":"","description":"The release name"},{"displayName":"Description","name":"description","type":"string","default":"","description":"The description of the release. You can use Markdown."},{"displayName":"Milestones","name":"milestones","type":"string","default":"","description":"The title of each milestone to associate with the release (provide a titles list spearated with comma)"},{"displayName":"Released At","name":"released_at","type":"dateTime","default":"","description":"The date when the release is/was ready"}]},{"displayName":"Filters","name":"getRepositoryIssuesFilters","type":"collection","typeOptions":{"multipleValueButtonText":"Add Filter"},"displayOptions":{"show":{"operation":["getIssues"],"resource":["repository"]}},"default":{},"options":[{"displayName":"Assignee","name":"assignee_username","type":"string","default":"","description":"Return only issues which are assigned to a specific user"},{"displayName":"Creator","name":"author_username","type":"string","default":"","description":"Return only issues which were created by a specific user"},{"displayName":"Search","name":"search","type":"string","default":"","description":"Search issues against their title and description"},{"displayName":"Labels","name":"labels","type":"string","default":"","description":"Return only issues with the given labels. Multiple lables can be separated by comma."},{"displayName":"Updated After","name":"updated_after","type":"dateTime","default":"","description":"Return only issues updated at or after this time"},{"displayName":"State","name":"state","type":"options","options":[{"name":"All","value":"","description":"Returns issues with any state"},{"name":"Closed","value":"closed","description":"Return issues with \"closed\" state"},{"name":"Open","value":"opened","description":"Return issues with \"open\" state"}],"default":"opened","description":"The state to filter by"},{"displayName":"Sort","name":"order_by","type":"options","options":[{"name":"Created At","value":"created_at","description":"Sort by created date"},{"name":"Updated At","value":"updated_at","description":"Sort by updated date"},{"name":"Priority","value":"priority","description":"Sort by priority"}],"default":"created_at","description":"The order the issues should be returned in"},{"displayName":"Direction","name":"sort","type":"options","options":[{"name":"Ascending","value":"asc","description":"Sort in ascending order"},{"name":"Descending","value":"desc","description":"Sort in descending order"}],"default":"desc","description":"The sort order"}]},{"displayName":"File Path","name":"filePath","type":"string","default":"","displayOptions":{"show":{"resource":["file"]},"hide":{"operation":["list"]}},"placeholder":"docs/README.md","description":"The file path of the file. Has to contain the full path or leave it empty for root folder."},{"displayName":"Path","name":"filePath","type":"string","default":"","displayOptions":{"show":{"resource":["file"],"operation":["list"]}},"placeholder":"docs/","description":"The path of the folder to list"},{"displayName":"Page","name":"page","type":"number","displayOptions":{"show":{"resource":["file"],"operation":["list"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":1000},"default":1,"description":"Page of results to display"},{"displayName":"Additional Parameters","name":"additionalParameters","placeholder":"Add Parameter","description":"Additional fields to add","type":"collection","default":{},"displayOptions":{"show":{"resource":["file"],"operation":["list"]}},"options":[{"displayName":"Reference","name":"ref","type":"string","default":"","placeholder":"main","description":"The name of the commit/branch/tag. Default: the repository’s default branch (usually main)."},{"displayName":"Recursive","name":"recursive","type":"boolean","default":false,"description":"Whether or not to get a recursive file tree. Default is false."}]},{"displayName":"As Binary Property","name":"asBinaryProperty","type":"boolean","default":true,"displayOptions":{"show":{"operation":["get"],"resource":["file"]}},"description":"Whether to set the data of the file as binary property instead of returning the raw API response"},{"displayName":"Put Output File in Field","name":"binaryPropertyName","type":"string","default":"data","required":true,"displayOptions":{"show":{"asBinaryProperty":[true],"operation":["get"],"resource":["file"]}},"placeholder":"","hint":"The name of the output binary field to put the file in"},{"displayName":"Additional Parameters","name":"additionalParameters","placeholder":"Add Parameter","description":"Additional fields to add","type":"collection","default":{},"displayOptions":{"show":{"operation":["get"],"resource":["file"]}},"options":[{"displayName":"Reference","name":"reference","type":"string","default":"","placeholder":"main","description":"The name of the commit/branch/tag. Default: the repository’s default branch (usually main)."}]},{"displayName":"Binary File","name":"binaryData","type":"boolean","default":false,"required":true,"displayOptions":{"show":{"operation":["create","edit"],"resource":["file"]}},"description":"Whether the data to upload should be taken from binary field"},{"displayName":"File Content","name":"fileContent","type":"string","default":"","required":true,"displayOptions":{"show":{"binaryData":[false],"operation":["create","edit"],"resource":["file"]}},"placeholder":"","description":"The text content of the file"},{"displayName":"Input Binary Field","name":"binaryPropertyName","type":"string","default":"data","required":true,"displayOptions":{"show":{"binaryData":[true],"operation":["create","edit"],"resource":["file"]}},"placeholder":"","hint":"The name of the input binary field containing the file to be written"},{"displayName":"Commit Message","name":"commitMessage","type":"string","default":"","required":true,"displayOptions":{"show":{"operation":["create","delete","edit"],"resource":["file"]}}},{"displayName":"Branch","name":"branch","type":"string","default":"","description":"Name of the new branch to create. The commit is added to this branch.","required":true,"displayOptions":{"show":{"operation":["create","delete","edit"],"resource":["file"]}}},{"displayName":"Additional Parameters","name":"additionalParameters","placeholder":"Add Parameter","description":"Additional fields to add","type":"fixedCollection","default":{},"displayOptions":{"show":{"operation":["create","delete","edit"],"resource":["file"]}},"options":[{"displayName":"Start Branch","name":"branchStart","values":[{"displayName":"Start Branch","name":"branchStart","type":"string","default":"","description":"Name of the base branch to create the new branch from"}]},{"name":"author","displayName":"Author","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"The name of the author of the commit"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"The email of the author of the commit"}]},{"name":"encoding","displayName":"Encoding","values":[{"displayName":"Encoding","name":"encoding","type":"string","default":"text","description":"Change encoding to base64. Default is text."}]}]}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gitlab/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/gitlab/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Gitlab/gitlab.svg"},
|
|
139
139
|
{"displayName":"GitLab Trigger","name":"n8n-nodes-base.gitlabTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"owner\"] + \"/\" + $parameter[\"repository\"] + \": \" + $parameter[\"events\"].join(\", \")}}","description":"Starts the workflow when GitLab events occur","defaults":{"name":"GitLab Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"gitlabApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"]}}},{"name":"gitlabOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"accessToken"},{"displayName":"Repository Owner","name":"owner","type":"string","default":"","required":true,"placeholder":"n8n-io","description":"Owner of the repository"},{"displayName":"Repository Name","name":"repository","type":"string","default":"","required":true,"placeholder":"n8n","description":"The name of the repository"},{"displayName":"Events","name":"events","type":"multiOptions","options":[{"name":"Comment","value":"note","description":"Triggered when a new comment is made on commits, merge requests, issues, and code snippets"},{"name":"Confidential Issues","value":"confidential_issues","description":"Triggered on confidential issues' events"},{"name":"Confidential Comments","value":"confidential_note","description":"Triggered when a confidential comment is made"},{"name":"Deployments","value":"deployment","description":"Triggered when a deployment starts/succeeds/fails/is cancelled"},{"name":"Issue","value":"issues","description":"Triggered when a new issue is created or an existing issue was updated/closed/reopened"},{"name":"Job","value":"job","description":"Triggered on status change of a job"},{"name":"Merge Request","value":"merge_requests","description":"Triggered when a new merge request is created, an existing merge request was updated/merged/closed or a commit is added in the source branch"},{"name":"Pipeline","value":"pipeline","description":"Triggered on status change of Pipeline"},{"name":"Push","value":"push","description":"Triggered when you push to the repository except when pushing tags"},{"name":"Release","value":"releases","description":"Release events are triggered when a release is created or updated"},{"name":"Tag","value":"tag_push","description":"Triggered when you create (or delete) tags to the repository"},{"name":"Wiki Page","value":"wiki_page","description":"Triggered when a wiki page is created, updated or deleted"},{"name":"*","value":"*","description":"Any time any event is triggered (Wildcard Event)"}],"required":true,"default":[],"description":"The events to listen to"}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.gitlabtrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/gitlab/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Gitlab/gitlab.svg"},
|
|
140
|
-
{"displayName":"Google Ads","name":"n8n-nodes-base.googleAds","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Use the Google Ads API","defaults":{"name":"Google Ads"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleAdsOAuth2Api","required":true,"testedBy":{"request":{"method":"GET","url":"/v15/customers:listAccessibleCustomers"}}}],"requestDefaults":{"returnFullResponse":true,"baseURL":"https://googleads.googleapis.com","headers":{"developer-token":"={{$credentials.developerToken}}"}},"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Campaign","value":"campaign"}],"default":"campaign"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["campaign"]}},"options":[{"name":"Get Many","value":"getAll","description":"Get many campaigns linked to the specified account","routing":{"request":{"method":"POST","url":"={{\"/v15/customers/\" + $parameter[\"clientCustomerId\"].toString().replace(/-/g, \"\") + \"/googleAds:search\"}}","body":{"query":"={{ \"select campaign.id, campaign.name, campaign_budget.amount_micros, campaign_budget.period,campaign.status,campaign.optimization_score,campaign.advertising_channel_type,campaign.advertising_channel_sub_type,metrics.impressions,metrics.interactions,metrics.interaction_rate,metrics.average_cost,metrics.cost_micros,metrics.conversions,metrics.cost_per_conversion,metrics.conversions_from_interactions_rate,metrics.video_views,metrics.average_cpm,metrics.ctr from campaign where campaign.id > 0 \" + ([\"allTime\", undefined, \"\"].includes($parameter.additionalOptions?.dateRange) ? \"\" : \" and segments.date DURING \" + $parameter.additionalOptions.dateRange) + \" \" + ([\"all\", undefined, \"\"].includes($parameter.additionalOptions?.campaignStatus) ? \"\" : \" and campaign.status = '\" + $parameter.additionalOptions.campaignStatus + \"'\") + \"\" }}"},"headers":{"login-customer-id":"={{$parameter[\"managerCustomerId\"].toString().replace(/-/g, \"\")}}"}},"output":{"postReceive":[null]}},"action":"Get many campaigns"},{"name":"Get","value":"get","description":"Get a specific campaign","routing":{"request":{"method":"POST","url":"={{\"/v15/customers/\" + $parameter[\"clientCustomerId\"].toString().replace(/-/g, \"\") + \"/googleAds:search\"}}","returnFullResponse":true,"body":{"query":"={{ \"select campaign.id, campaign.name, campaign_budget.amount_micros, campaign_budget.period,campaign.status,campaign.optimization_score,campaign.advertising_channel_type,campaign.advertising_channel_sub_type,metrics.impressions,metrics.interactions,metrics.interaction_rate,metrics.average_cost,metrics.cost_micros,metrics.conversions,metrics.cost_per_conversion,metrics.conversions_from_interactions_rate,metrics.video_views,metrics.average_cpm,metrics.ctr from campaign where campaign.id = \" + $parameter[\"campaignId\"].toString().replace(/-/g, \"\")}}"},"headers":{"login-customer-id":"={{$parameter[\"managerCustomerId\"].toString().replace(/-/g, \"\")}}"}},"output":{"postReceive":[null]}},"action":"Get a campaign"}],"default":"getAll"},{"displayName":"Divide field names expressed with <i>micros</i> by 1,000,000 to get the actual value","name":"campaigsNotice","type":"notice","default":"","displayOptions":{"show":{"resource":["campaign"]}}},{"displayName":"Manager Customer ID","name":"managerCustomerId","type":"string","required":true,"placeholder":"9998887777","displayOptions":{"show":{"resource":["campaign"]}},"default":""},{"displayName":"Client Customer ID","name":"clientCustomerId","type":"string","required":true,"placeholder":"6665554444","displayOptions":{"show":{"resource":["campaign"]}},"default":""},{"displayName":"Campaign ID","name":"campaignId","type":"string","required":true,"displayOptions":{"show":{"operation":["get"],"resource":["campaign"]}},"default":"","description":"ID of the campaign"},{"displayName":"Additional Options","name":"additionalOptions","type":"collection","displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"]}},"default":{},"description":"Additional options for fetching campaigns","placeholder":"Add option","options":[{"displayName":"Date Range","name":"dateRange","description":"Filters statistics by period","type":"options","options":[{"name":"All Time","value":"allTime","description":"Fetch statistics for all period"},{"name":"Today","value":"TODAY","description":"Today only"},{"name":"Yesterday","value":"YESTERDAY","description":"Yesterday only"},{"name":"Last 7 Days","value":"LAST_7_DAYS","description":"Last 7 days, not including today"},{"name":"Last Business Week","value":"LAST_BUSINESS_WEEK","description":"The 5 day business week, Monday through Friday, of the previous business week"},{"name":"This Month","value":"THIS_MONTH","description":"All days in the current month"},{"name":"Last Month","value":"LAST_MONTH","description":"All days in the previous month"},{"name":"Last 14 Days","value":"LAST_14_DAYS","description":"The last 14 days not including today"},{"name":"Last 30 Days","value":"LAST_30_DAYS","description":"The last 30 days not including today"}],"default":"allTime"},{"displayName":"Show Campaigns by Status","name":"campaignStatus","description":"Filters campaigns by status","type":"options","options":[{"name":"All","value":"all","description":"Fetch all campaigns regardless of status"},{"name":"Enabled","value":"ENABLED","description":"Filter only active campaigns"},{"name":"Paused","value":"PAUSED","description":"Filter only paused campaigns"},{"name":"Removed","value":"REMOVED","description":"Filter only removed campaigns"}],"default":"all"}]},{"displayName":"Request Options","name":"requestOptions","type":"collection","isNodeSetting":true,"placeholder":"Add Option","default":{},"options":[{"displayName":"Batching","name":"batching","placeholder":"Add Batching","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{"batch":{}},"options":[{"displayName":"Batching","name":"batch","values":[{"displayName":"Items per Batch","name":"batchSize","type":"number","typeOptions":{"minValue":-1},"default":50,"description":"Input will be split in batches to throttle requests. -1 for disabled. 0 will be treated as 1."},{"displayName":"Batch Interval (ms)","name":"batchInterval","type":"number","typeOptions":{"minValue":0},"default":1000,"description":"Time (in milliseconds) between each batch of requests. 0 for disabled."}]}]},{"displayName":"Ignore SSL Issues","name":"allowUnauthorizedCerts","type":"boolean","noDataExpression":true,"default":false,"description":"Whether to accept the response even if SSL certificate validation is not possible"},{"displayName":"Proxy","name":"proxy","type":"string","default":"","placeholder":"e.g. http://myproxy:3128","description":"HTTP proxy to use. If authentication is required it can be defined as follow: http://username:password@myproxy:3128"},{"displayName":"Timeout","name":"timeout","type":"number","typeOptions":{"minValue":1},"default":10000,"description":"Time in ms to wait for the server to send response headers (and start the response body) before aborting the request"}]}],"codex":{"categories":["Analytics"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googleads/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Ads/googleAds.svg"},
|
|
141
|
-
{"displayName":"Google Analytics","name":"n8n-nodes-base.googleAnalytics","group":["transform"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Use the Google Analytics API","defaultVersion":2,"version":2,"defaults":{"name":"Google Analytics"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleAnalyticsOAuth2","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Report","value":"report"},{"name":"User Activity","value":"userActivity"}],"default":"report"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["report"]}},"options":[{"name":"Get","value":"get","description":"Return the analytics data","action":"Get a report"}],"default":"get"},{"displayName":"Property Type","name":"propertyType","type":"options","noDataExpression":true,"description":"Google Analytics 4 is the latest version. Universal Analytics is an older version that is not fully functional after the end of June 2023.","options":[{"name":"Google Analytics 4","value":"ga4"},{"name":"Universal Analytics","value":"universal"}],"default":"ga4","displayOptions":{"show":{"resource":["report"],"operation":["get"]}}},{"displayName":"Property","name":"propertyId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"The Property of Google Analytics","hint":"If this doesn't work, try changing the 'Property Type' field above","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a property...","typeOptions":{"searchListMethod":"searchProperties","searchFilterRequired":false,"searchable":false}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://analytics.google.com/analytics/...","validation":[{"type":"regex","properties":{"regex":".*analytics\\.google\\.com\\/analytics.*\\/p([0-9]{1,})(?:\\/.*|)*","errorMessage":"Not a valid Google Analytics URL"}}],"extractValue":{"type":"regex","regex":".*analytics\\.google\\.com\\/analytics.*\\/p([0-9]{1,})(?:\\/.*|)"}},{"displayName":"By ID","name":"id","type":"string","placeholder":"123456","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,}","errorMessage":"Not a valid Google Analytics Property ID"}}],"url":"=https://analytics.google.com/analytics/web/#/p{{$value}}/"}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Date Range","name":"dateRange","type":"options","required":true,"options":[{"name":"Last 7 Days","value":"last7days"},{"name":"Last 30 Days","value":"last30days"},{"name":"Today","value":"today"},{"name":"Yesterday","value":"yesterday"},{"name":"Last Complete Calendar Week","value":"lastCalendarWeek"},{"name":"Last Complete Calendar Month","value":"lastCalendarMonth"},{"name":"Custom","value":"custom"}],"default":"last7days","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Start","name":"startDate","type":"dateTime","required":true,"default":"2024-10-01T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"dateRange":["custom"],"propertyType":["ga4"]}}},{"displayName":"End","name":"endDate","type":"dateTime","required":true,"default":"2024-10-08T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"dateRange":["custom"],"propertyType":["ga4"]}}},{"displayName":"Metrics","name":"metricsGA4","type":"fixedCollection","default":{"metricValues":[{"listName":"totalUsers"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add Metric","description":"The quantitative measurements of a report. For example, the metric eventCount is the total number of events. Requests are allowed up to 10 metrics.","options":[{"displayName":"Values","name":"metricValues","values":[{"displayName":"Metric","name":"listName","type":"options","default":"totalUsers","options":[{"name":"1 Day Active Users","value":"active1DayUsers"},{"name":"28 Day Active Users","value":"active28DayUsers"},{"name":"7 Day Active Users","value":"active7DayUsers"},{"name":"Checkouts","value":"checkouts"},{"name":"Events","value":"eventCount"},{"name":"Page Views","value":"screenPageViews"},{"name":"Session Duration","value":"userEngagementDuration"},{"name":"Sessions","value":"sessions"},{"name":"Sessions per User","value":"sessionsPerUser"},{"name":"Total Users","value":"totalUsers"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"totalUsers","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Expression","name":"expression","type":"string","default":"","description":"A mathematical expression for derived metrics. For example, the metric Event count per user is eventCount/totalUsers.","placeholder":"e.g. eventCount/totalUsers","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Invisible","name":"invisible","type":"boolean","default":false,"displayOptions":{"show":{"listName":["custom"]}},"description":"Whether a metric is invisible in the report response. If a metric is invisible, the metric will not produce a column in the response, but can be used in metricFilter, orderBys, or a metric expression."}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Dimensions to split by","name":"dimensionsGA4","type":"fixedCollection","default":{"dimensionValues":[{"listName":"date"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension","description":"Dimensions are attributes of your data. For example, the dimension city indicates the city from which an event originates. Dimension values in report responses are strings; for example, the city could be \"Paris\" or \"New York\". Requests are allowed up to 9 dimensions.","options":[{"displayName":"Values","name":"dimensionValues","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["ga4"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["ga4"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":1000},"default":50,"description":"Max number of results to return"},{"displayName":"Simplify Output","name":"simple","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["ga4"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}},"options":[{"displayName":"Currency Code","name":"currencyCode","type":"string","default":"","description":"A currency code in ISO4217 format, such as \"AED\", \"USD\", \"JPY\". If the field is empty, the report uses the property's default currency."},{"displayName":"Dimensions Filters","name":"dimensionFiltersUI","type":"fixedCollection","default":{},"placeholder":"Add Filter","options":[{"displayName":"Filter Expressions","name":"filterExpressions","values":[{"displayName":"Filter Expression Type","name":"filterExpressionType","type":"options","default":"andGroup","options":[{"name":"And Group","value":"andGroup"},{"name":"Or Group","value":"orGroup"}]},{"displayName":"Expression","name":"expression","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Expression","options":[{"displayName":"String Filter","name":"stringFilter","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Value","name":"value","type":"string","default":""},{"displayName":"Case Sensitive","name":"caseSensitive","type":"boolean","default":true},{"displayName":"Match Type","name":"matchType","type":"options","default":"EXACT","options":[{"name":"Begins With","value":"BEGINS_WITH"},{"name":"Contains Value","value":"CONTAINS"},{"name":"Ends With","value":"ENDS_WITH"},{"name":"Exact Match","value":"EXACT"},{"name":"Full Match for the Regular Expression","value":"FULL_REGEXP"},{"name":"Partial Match for the Regular Expression","value":"PARTIAL_REGEXP"}]}]},{"displayName":"In List Filter","name":"inListFilter","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Values","name":"values","type":"string","default":"","hint":"Comma separated list of values. Must be non-empty."},{"displayName":"Case Sensitive","name":"caseSensitive","type":"boolean","default":true}]},{"displayName":"Numeric Filter","name":"numericFilter","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Value Type","name":"valueType","type":"options","default":"doubleValue","options":[{"name":"Double Value","value":"doubleValue"},{"name":"Integer Value","value":"int64Value"}]},{"displayName":"Value","name":"value","type":"string","default":""},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"EQUAL","options":[{"name":"Equal","value":"EQUAL"},{"name":"Greater Than","value":"GREATER_THAN"},{"name":"Greater than or Equal","value":"GREATER_THAN_OR_EQUAL"},{"name":"Less Than","value":"LESS_THAN"},{"name":"Less than or Equal","value":"LESS_THAN_OR_EQUAL"}]}]}]}]}]},{"displayName":"Metric Aggregation","name":"metricAggregations","type":"multiOptions","default":[],"options":[{"name":"MAXIMUM","value":"MAXIMUM"},{"name":"MINIMUM","value":"MINIMUM"},{"name":"TOTAL","value":"TOTAL"}],"displayOptions":{"show":{"/simple":[false]}}},{"displayName":"Metrics Filters","name":"metricsFiltersUI","type":"fixedCollection","default":{},"placeholder":"Add Filter","options":[{"displayName":"Filter Expressions","name":"filterExpressions","values":[{"displayName":"Filter Expression Type","name":"filterExpressionType","type":"options","default":"andGroup","options":[{"name":"And Group","value":"andGroup"},{"name":"Or Group","value":"orGroup"}]},{"displayName":"Expression","name":"expression","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Expression","options":[{"displayName":"Between Filter","name":"betweenFilter","values":[{"displayName":"Metric","name":"listName","type":"options","default":"totalUsers","options":[{"name":"1 Day Active Users","value":"active1DayUsers"},{"name":"28 Day Active Users","value":"active28DayUsers"},{"name":"7 Day Active Users","value":"active7DayUsers"},{"name":"Checkouts","value":"checkouts"},{"name":"Events","value":"eventCount"},{"name":"Page Views","value":"screenPageViews"},{"name":"Session Duration","value":"userEngagementDuration"},{"name":"Sessions","value":"sessions"},{"name":"Sessions per User","value":"sessionsPerUser"},{"name":"Total Users","value":"totalUsers"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"totalUsers","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Value Type","name":"valueType","type":"options","default":"doubleValue","options":[{"name":"Double Value","value":"doubleValue"},{"name":"Integer Value","value":"int64Value"}]},{"displayName":"From Value","name":"fromValue","type":"string","default":""},{"displayName":"To Value","name":"toValue","type":"string","default":""}]},{"displayName":"Numeric Filter","name":"numericFilter","values":[{"displayName":"Metric","name":"listName","type":"options","default":"totalUsers","options":[{"name":"1 Day Active Users","value":"active1DayUsers"},{"name":"28 Day Active Users","value":"active28DayUsers"},{"name":"7 Day Active Users","value":"active7DayUsers"},{"name":"Checkouts","value":"checkouts"},{"name":"Events","value":"eventCount"},{"name":"Page Views","value":"screenPageViews"},{"name":"Session Duration","value":"userEngagementDuration"},{"name":"Sessions","value":"sessions"},{"name":"Sessions per User","value":"sessionsPerUser"},{"name":"Total Users","value":"totalUsers"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"totalUsers","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Value Type","name":"valueType","type":"options","default":"doubleValue","options":[{"name":"Double Value","value":"doubleValue"},{"name":"Integer Value","value":"int64Value"}]},{"displayName":"Value","name":"value","type":"string","default":""},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"EQUAL","options":[{"name":"Equal","value":"EQUAL"},{"name":"Greater Than","value":"GREATER_THAN"},{"name":"Greater than or Equal","value":"GREATER_THAN_OR_EQUAL"},{"name":"Less Than","value":"LESS_THAN"},{"name":"Less than or Equal","value":"LESS_THAN_OR_EQUAL"}]}]}]}]}]},{"displayName":"Keep Empty Rows","name":"keepEmptyRows","type":"boolean","default":false,"description":"Whether false or unspecified, each row with all metrics equal to 0 will not be returned. If true, these rows will be returned if they are not separately removed by a filter."},{"displayName":"Order By","name":"orderByUI","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Order","description":"Specifies how rows are ordered in the response","options":[{"displayName":"Metric Order By","name":"metricOrderBy","values":[{"displayName":"Descending","name":"desc","type":"boolean","default":false,"description":"Whether true, sorts by descending order"},{"displayName":"Metric Name or ID","name":"metricName","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"","description":"Sorts by metric values. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."}]},{"displayName":"Dimmension Order By","name":"dimmensionOrderBy","values":[{"displayName":"Descending","name":"desc","type":"boolean","default":false,"description":"Whether true, sorts by descending order"},{"displayName":"Dimmension Name or ID","name":"dimensionName","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"","description":"Sorts by metric values. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Order Type","name":"orderType","type":"options","default":"ORDER_TYPE_UNSPECIFIED","options":[{"name":"Alphanumeric","value":"ALPHANUMERIC","description":"Alphanumeric sort by Unicode code point"},{"name":"Case Insensitive Alphanumeric","value":"CASE_INSENSITIVE_ALPHANUMERIC","description":"Case insensitive alphanumeric sort by lower case Unicode code point"},{"name":"Numeric","value":"NUMERIC","description":"Dimension values are converted to numbers before sorting"},{"name":"Unspecified","value":"ORDER_TYPE_UNSPECIFIED"}]}]}]},{"displayName":"Return Property Quota","name":"returnPropertyQuota","type":"boolean","default":false,"description":"Whether to return the current state of this Analytics Property's quota. Quota is returned in PropertyQuota.","displayOptions":{"show":{"/simple":[false]}}}]},{"displayName":"View","name":"viewId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"The View of Google Analytics","hint":"If this doesn't work, try changing the 'Property Type' field above","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a view...","typeOptions":{"searchListMethod":"searchViews","searchFilterRequired":false,"searchable":false}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://analytics.google.com/analytics/...","validation":[{"type":"regex","properties":{"regex":".*analytics.google.com/analytics.*p[0-9]{1,}.*","errorMessage":"Not a valid Google Analytics URL"}}],"extractValue":{"type":"regex","regex":".*analytics.google.com/analytics.*p([0-9]{1,})"}},{"displayName":"By ID","name":"id","type":"string","placeholder":"123456","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,}","errorMessage":"Not a valid Google Analytics View ID"}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Date Range","name":"dateRange","type":"options","required":true,"options":[{"name":"Last 7 Days","value":"last7days"},{"name":"Last 30 Days","value":"last30days"},{"name":"Today","value":"today"},{"name":"Yesterday","value":"yesterday"},{"name":"Last Complete Calendar Week","value":"lastCalendarWeek"},{"name":"Last Complete Calendar Month","value":"lastCalendarMonth"},{"name":"Custom","value":"custom"}],"default":"last7days","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Start","name":"startDate","type":"dateTime","required":true,"default":"2024-10-01T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"],"dateRange":["custom"]}}},{"displayName":"End","name":"endDate","type":"dateTime","required":true,"default":"2024-10-08T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"],"dateRange":["custom"]}}},{"displayName":"Metrics","name":"metricsUA","type":"fixedCollection","default":{"metricValues":[{"listName":"ga:users"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add metric","description":"Metrics in the request","options":[{"displayName":"Metric","name":"metricValues","values":[{"displayName":"Metric","name":"listName","type":"options","default":"ga:users","options":[{"name":"Checkouts","value":"ga:productCheckouts"},{"name":"Events","value":"ga:totalEvents"},{"name":"Page Views","value":"ga:pageviews"},{"name":"Session Duration","value":"ga:sessionDuration"},{"name":"Sessions","value":"ga:sessions"},{"name":"Sessions per User","value":"ga:sessionsPerUser"},{"name":"Total Users","value":"ga:users"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetrics","loadOptionsDependsOn":["viewId.value"]},"default":"ga:users","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Expression","name":"expression","type":"string","default":"","placeholder":"e.g. ga:totalRefunds/ga:users","description":"Learn more about Google Analytics <a href=\"https://developers.google.com/analytics/devguides/reporting/core/v4/rest/v4/reports/batchGet#Metric\">metric expressions</a>","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Formatting Type","name":"formattingType","type":"options","default":"INTEGER","description":"Specifies how the metric expression should be formatted","options":[{"name":"Currency","value":"CURRENCY"},{"name":"Float","value":"FLOAT"},{"name":"Integer","value":"INTEGER"},{"name":"Percent","value":"PERCENT"},{"name":"Time","value":"TIME"}],"displayOptions":{"show":{"listName":["custom"]}}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Dimensions to split by","name":"dimensionsUA","type":"fixedCollection","default":{"dimensionValues":[{"listName":"ga:date"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension","description":"Dimensions are attributes of your data. For example, the dimension ga:city indicates the city, for example, \"Paris\" or \"New York\", from which a session originates.","options":[{"displayName":"Values","name":"dimensionValues","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"ga:date","options":[{"name":"Browser","value":"ga:browser"},{"name":"Campaign","value":"ga:campaign"},{"name":"City","value":"ga:city"},{"name":"Country","value":"ga:country"},{"name":"Date","value":"ga:date"},{"name":"Device Category","value":"ga:deviceCategory"},{"name":"Item Name","value":"ga:productName"},{"name":"Language","value":"ga:language"},{"name":"Page","value":"ga:pagePath"},{"name":"Source / Medium","value":"ga:sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensions","loadOptionsDependsOn":["viewId.value"]},"default":"ga:date","description":"Name of the dimension to fetch, for example ga:browser. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["universal"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["universal"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":1000},"default":50,"description":"Max number of results to return"},{"displayName":"Simplify Output","name":"simple","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["universal"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}},"options":[{"displayName":"Dimension Filters","name":"dimensionFiltersUi","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension Filter","description":"Dimension Filters in the request","options":[{"displayName":"Filters","name":"filterValues","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"ga:date","options":[{"name":"Browser","value":"ga:browser"},{"name":"Campaign","value":"ga:campaign"},{"name":"City","value":"ga:city"},{"name":"Country","value":"ga:country"},{"name":"Date","value":"ga:date"},{"name":"Device Category","value":"ga:deviceCategory"},{"name":"Item Name","value":"ga:productName"},{"name":"Language","value":"ga:language"},{"name":"Page","value":"ga:pagePath"},{"name":"Source / Medium","value":"ga:sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensions","loadOptionsDependsOn":["viewId.value"]},"default":"ga:date","description":"Name of the dimension to fetch, for example ga:browser. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Operator","name":"operator","type":"options","default":"EXACT","description":"Operator to use in combination with value","options":[{"name":"Begins With","value":"BEGINS_WITH"},{"name":"Ends With","value":"ENDS_WITH"},{"name":"Equals (Number)","value":"NUMERIC_EQUAL"},{"name":"Exactly Matches","value":"EXACT"},{"name":"Greater Than (Number)","value":"NUMERIC_GREATER_THAN"},{"name":"Less Than (Number)","value":"NUMERIC_LESS_THAN"},{"name":"Partly Matches","value":"PARTIAL"},{"name":"Regular Expression","value":"REGEXP"}]},{"displayName":"Value","name":"expressions","type":"string","default":"","placeholder":"","description":"String or <a href=\"https://support.google.com/analytics/answer/1034324?hl=en\">regular expression</a> to match against"}]}]},{"displayName":"Hide Totals","name":"hideTotals","type":"boolean","default":false,"description":"Whether to hide the total of all metrics for all the matching rows, for every date range","displayOptions":{"show":{"/simple":[false]}}},{"displayName":"Hide Value Ranges","name":"hideValueRanges","type":"boolean","default":false,"description":"Whether to hide the minimum and maximum across all matching rows","displayOptions":{"show":{"/simple":[false]}}},{"displayName":"Include Empty Rows","name":"includeEmptyRows","type":"boolean","default":false,"description":"Whether the response exclude rows if all the retrieved metrics are equal to zero"},{"displayName":"Use Resource Quotas","name":"useResourceQuotas","type":"boolean","default":false,"description":"Whether to enable resource based quotas","displayOptions":{"show":{"/simple":[false]}}}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["userActivity"]}},"options":[{"name":"Search","value":"search","description":"Return user activity data","action":"Search user activity data"}],"default":"search"},{"displayName":"View Name or ID","name":"viewId","type":"options","typeOptions":{"loadOptionsMethod":"getViews"},"default":"","required":true,"displayOptions":{"show":{"resource":["userActivity"],"operation":["search"]}},"placeholder":"123456","description":"The view from Google Analytics. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"If there's nothing here, try changing the 'Property type' field above"},{"displayName":"User ID","name":"userId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["userActivity"],"operation":["search"]}},"placeholder":"123456","description":"ID of a user"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["search"],"resource":["userActivity"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["search"],"resource":["userActivity"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["search"],"resource":["userActivity"]}},"options":[{"displayName":"Activity Types","name":"activityTypes","type":"multiOptions","options":[{"name":"Ecommerce","value":"ECOMMERCE"},{"name":"Event","value":"EVENT"},{"name":"Goal","value":"GOAL"},{"name":"Pageview","value":"PAGEVIEW"},{"name":"Screenview","value":"SCREENVIEW"}],"description":"Type of activites requested","default":[]}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Analytics/analytics.svg","codex":{"categories":["Analytics"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}}},
|
|
140
|
+
{"displayName":"Gong","name":"n8n-nodes-base.gong","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Interact with Gong API","defaults":{"name":"Gong"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"gongApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"]}}},{"name":"gongOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"requestDefaults":{"baseURL":"={{ $credentials.baseUrl.replace(new RegExp(\"/$\"), \"\") }}"},"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"accessToken"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Call","value":"call"},{"name":"User","value":"user"}],"default":"call"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["call"]}},"options":[{"name":"Get","value":"get","description":"Retrieve data for a specific call","routing":{"request":{"method":"POST","url":"/v2/calls/extensive","ignoreHttpStatusErrors":true},"output":{"postReceive":[null]}},"action":"Get call"},{"name":"Get Many","value":"getAll","description":"Retrieve a list of calls","routing":{"request":{"method":"POST","url":"/v2/calls/extensive","body":{"filter":{}},"ignoreHttpStatusErrors":true},"output":{"postReceive":[null]}},"action":"Get many calls"}],"default":"getAll"},{"displayName":"Call to Get","name":"call","default":{"mode":"list","value":""},"displayOptions":{"show":{"resource":["call"],"operation":["get"]}},"modes":[{"displayName":"From List","name":"list","type":"list","typeOptions":{"searchListMethod":"getCalls","searchable":true}},{"displayName":"By ID","name":"id","placeholder":"e.g. 7782342274025937895","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,20}","errorMessage":"Not a valid Gong Call ID"}}]},{"displayName":"By URL","name":"url","extractValue":{"type":"regex","regex":"https:\\/\\/[a-zA-Z0-9-]+\\.app\\.gong\\.io\\/call\\?id=([0-9]{1,20})"},"placeholder":"e.g. https://subdomain.app.gong.io/call?id=7782342274025937895","type":"string","validation":[{"type":"regex","properties":{"regex":"https:\\/\\/[a-zA-Z0-9-]+\\.app\\.gong\\.io\\/call\\?id=([0-9]{1,20})","errorMessage":"Not a valid Gong URL"}}]}],"required":true,"routing":{"send":{"type":"body","property":"filter.callIds","propertyInDotNotation":true,"value":"={{ [$value] }}"},"output":{"postReceive":[{"type":"rootProperty","properties":{"property":"calls"}}]}},"type":"resourceLocator"},{"displayName":"Options","name":"options","default":{},"displayOptions":{"show":{"resource":["call"],"operation":["get"]}},"options":[{"displayName":"Call Data to Include","name":"properties","type":"multiOptions","default":[],"description":"The Call properties to include in the returned results. Choose from a list, or specify IDs using an <a href=\"https://docs.n8n.io/code-examples/expressions/\">expression</a>.","options":[{"name":"Action Items","value":"pointsOfInterest","description":"Call points of interest"},{"name":"Audio and Video URLs","value":"media","description":"Audio and video URL of the call. The URLs will be available for 8 hours."},{"name":"Brief","value":"brief","description":"Spotlight call brief","routing":{"send":{"type":"body","property":"contentSelector.exposedFields.content.brief","propertyInDotNotation":true,"value":"={{ $value }}"}}},{"name":"Comments","value":"publicComments","description":"Public comments made for this call"},{"name":"Highlights","value":"highlights","description":"Call highlights"},{"name":"Keypoints","value":"keyPoints","description":"Key points of the call"},{"name":"Outcome","value":"callOutcome","description":"Outcome of the call"},{"name":"Outline","value":"outline","description":"Call outline"},{"name":"Participants","value":"parties","description":"Information about the participants of the call"},{"name":"Structure","value":"structure","description":"Call agenda"},{"name":"Topics","value":"topics","description":"Duration of call topics"},{"name":"Trackers","value":"trackers","description":"Smart tracker and keyword tracker information for the call"},{"name":"Transcript","value":"transcript","description":"Information about the participants"}],"routing":{"send":{"preSend":[null]},"output":{"postReceive":[null]}}}],"placeholder":"Add Option","type":"collection"},{"displayName":"Return All","name":"returnAll","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["call"],"operation":["getAll"]}},"routing":{"send":{"paginate":"={{ $value }}"},"operations":{}},"type":"boolean"},{"displayName":"Limit","name":"limit","default":50,"description":"Max number of results to return","displayOptions":{"show":{"resource":["call"],"operation":["getAll"],"returnAll":[false]}},"routing":{"output":{"postReceive":[null,{"type":"limit","properties":{"maxResults":"={{ $value }}"}}]}},"type":"number","typeOptions":{"minValue":1},"validateType":"number"},{"displayName":"Filters","name":"filters","default":{},"displayOptions":{"show":{"resource":["call"],"operation":["getAll"]}},"options":[{"displayName":"After","name":"fromDateTime","default":"","description":"Returns calls that started on or after the specified date and time. If not provided, list starts with earliest call. For web-conference calls recorded by Gong, the date denotes its scheduled time, otherwise, it denotes its actual start time.","placeholder":"e.g. 2018-02-18T02:30:00-07:00 or 2018-02-18T08:00:00Z","routing":{"send":{"type":"body","property":"filter.fromDateTime","propertyInDotNotation":true,"value":"={{ new Date($value).toISOString() }}"}},"type":"dateTime","validateType":"dateTime"},{"displayName":"Before","name":"toDateTime","default":"","description":"Returns calls that started up to but excluding specified date and time. If not provided, list ends with most recent call. For web-conference calls recorded by Gong, the date denotes its scheduled time, otherwise, it denotes its actual start time.","placeholder":"e.g. 2018-02-18T02:30:00-07:00 or 2018-02-18T08:00:00Z","routing":{"send":{"type":"body","property":"filter.toDateTime","propertyInDotNotation":true,"value":"={{ new Date($value).toISOString() }}"}},"type":"dateTime","validateType":"dateTime"},{"displayName":"Workspace ID","name":"workspaceId","default":"","description":"Return only the calls belonging to this workspace","placeholder":"e.g. 623457276584334","routing":{"send":{"type":"body","property":"filter.workspaceId","propertyInDotNotation":true,"value":"={{ $value }}"}},"type":"string","validateType":"number"},{"displayName":"Call IDs","name":"callIds","default":"","description":"List of calls IDs to be filtered","hint":"Comma separated list of IDs, array of strings can be set in expression","routing":{"send":{"preSend":[null]}},"placeholder":"e.g. 7782342274025937895","type":"string"},{"displayName":"Organizer","name":"primaryUserIds","default":{"mode":"list","value":""},"description":"Return only the calls hosted by the specified user","modes":[{"displayName":"From List","name":"list","type":"list","typeOptions":{"searchListMethod":"getUsers","searchable":true}},{"displayName":"By ID","name":"id","placeholder":"e.g. 7782342274025937895","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,20}","errorMessage":"Not a valid Gong User ID"}}]}],"routing":{"send":{"type":"body","property":"filter.primaryUserIds","propertyInDotNotation":true,"value":"={{ [$value] }}"}},"type":"resourceLocator"}],"placeholder":"Add Filter","type":"collection"},{"displayName":"Options","name":"options","default":{},"displayOptions":{"show":{"resource":["call"],"operation":["getAll"]}},"options":[{"displayName":"Call Data to Include","name":"properties","type":"multiOptions","default":[],"description":"The Call properties to include in the returned results. Choose from a list, or specify IDs using an <a href=\"https://docs.n8n.io/code-examples/expressions/\">expression</a>.","options":[{"name":"Participants","value":"parties","description":"Information about the participants of the call"},{"name":"Topics","value":"topics","description":"Information about the topics of the call"}],"routing":{"send":{"preSend":[null]}}}],"placeholder":"Add Option","type":"collection"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["user"]}},"options":[{"name":"Get","value":"get","description":"Retrieve data for a specific user","action":"Get user","routing":{"request":{"method":"POST","url":"/v2/users/extensive","ignoreHttpStatusErrors":true},"output":{"postReceive":[null]}}},{"name":"Get Many","value":"getAll","description":"Retrieve a list of users","action":"Get many users","routing":{"request":{"method":"POST","url":"/v2/users/extensive","body":{"filter":{}},"ignoreHttpStatusErrors":true},"output":{"postReceive":[null]}}}],"default":"get"},{"displayName":"User to Get","name":"user","default":{"mode":"list","value":""},"displayOptions":{"show":{"resource":["user"],"operation":["get"]}},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","typeOptions":{"searchListMethod":"getUsers","searchable":true}},{"displayName":"By ID","name":"id","placeholder":"e.g. 7782342274025937895","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,20}","errorMessage":"Not a valid Gong User ID"}}]}],"routing":{"send":{"type":"body","property":"filter.userIds","propertyInDotNotation":true,"value":"={{ [$value] }}"},"output":{"postReceive":[{"type":"rootProperty","properties":{"property":"users"}}]}},"type":"resourceLocator"},{"displayName":"Return All","name":"returnAll","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["user"],"operation":["getAll"]}},"routing":{"send":{"paginate":"={{ $value }}"},"operations":{}},"type":"boolean","validateType":"boolean"},{"displayName":"Limit","name":"limit","default":50,"description":"Max number of results to return","displayOptions":{"show":{"resource":["user"],"operation":["getAll"],"returnAll":[false]}},"routing":{"output":{"postReceive":[{"type":"rootProperty","properties":{"property":"users"}},{"type":"limit","properties":{"maxResults":"={{ $value }}"}}]}},"type":"number","typeOptions":{"minValue":1},"validateType":"number"},{"displayName":"Filters","name":"filters","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["getAll"]}},"options":[{"displayName":"Created After","name":"createdFromDateTime","default":"","description":"An optional user creation time lower limit, if supplied the API will return only the users created at or after this time","placeholder":"e.g. 2018-02-18T02:30:00-07:00 or 2018-02-18T08:00:00Z","routing":{"send":{"type":"body","property":"filter.createdFromDateTime","propertyInDotNotation":true,"value":"={{ new Date($value).toISOString() }}"}},"type":"dateTime","validateType":"dateTime"},{"displayName":"Created Before","name":"createdToDateTime","default":"","description":"An optional user creation time upper limit, if supplied the API will return only the users created before this time","placeholder":"e.g. 2018-02-18T02:30:00-07:00 or 2018-02-18T08:00:00Z","routing":{"send":{"type":"body","property":"filter.createdToDateTime","propertyInDotNotation":true,"value":"={{ new Date($value).toISOString() }}"}},"type":"dateTime","validateType":"dateTime"},{"displayName":"User IDs","name":"userIds","default":"","description":"Set of Gong's unique numeric identifiers for the users (up to 20 digits)","hint":"Comma separated list of IDs, array of strings can be set in expression","routing":{"send":{"preSend":[null]}},"placeholder":"e.g. 7782342274025937895","type":"string"}],"placeholder":"Add Filter","type":"collection"},{"displayName":"Request Options","name":"requestOptions","type":"collection","isNodeSetting":true,"placeholder":"Add Option","default":{},"options":[{"displayName":"Batching","name":"batching","placeholder":"Add Batching","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{"batch":{}},"options":[{"displayName":"Batching","name":"batch","values":[{"displayName":"Items per Batch","name":"batchSize","type":"number","typeOptions":{"minValue":-1},"default":50,"description":"Input will be split in batches to throttle requests. -1 for disabled. 0 will be treated as 1."},{"displayName":"Batch Interval (ms)","name":"batchInterval","type":"number","typeOptions":{"minValue":0},"default":1000,"description":"Time (in milliseconds) between each batch of requests. 0 for disabled."}]}]},{"displayName":"Ignore SSL Issues","name":"allowUnauthorizedCerts","type":"boolean","noDataExpression":true,"default":false,"description":"Whether to accept the response even if SSL certificate validation is not possible"},{"displayName":"Proxy","name":"proxy","type":"string","default":"","placeholder":"e.g. http://myproxy:3128","description":"HTTP proxy to use. If authentication is required it can be defined as follow: http://username:password@myproxy:3128"},{"displayName":"Timeout","name":"timeout","type":"number","typeOptions":{"minValue":1},"default":10000,"description":"Time in ms to wait for the server to send response headers (and start the response body) before aborting the request"}]}],"codex":{"categories":["Development","Developer Tools"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gong/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gong/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Gong/gong.svg"},
|
|
141
|
+
{"displayName":"Google Ads","name":"n8n-nodes-base.googleAds","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Use the Google Ads API","defaults":{"name":"Google Ads"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleAdsOAuth2Api","required":true,"testedBy":{"request":{"method":"GET","url":"/v17/customers:listAccessibleCustomers"}}}],"requestDefaults":{"returnFullResponse":true,"baseURL":"https://googleads.googleapis.com","headers":{"developer-token":"={{$credentials.developerToken}}"}},"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Campaign","value":"campaign"}],"default":"campaign"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["campaign"]}},"options":[{"name":"Get Many","value":"getAll","description":"Get many campaigns linked to the specified account","routing":{"request":{"method":"POST","url":"={{\"/v17/customers/\" + $parameter[\"clientCustomerId\"].toString().replace(/-/g, \"\") + \"/googleAds:search\"}}","body":{"query":"={{ \"select campaign.id, campaign.name, campaign_budget.amount_micros, campaign_budget.period,campaign.status,campaign.optimization_score,campaign.advertising_channel_type,campaign.advertising_channel_sub_type,metrics.impressions,metrics.interactions,metrics.interaction_rate,metrics.average_cost,metrics.cost_micros,metrics.conversions,metrics.cost_per_conversion,metrics.conversions_from_interactions_rate,metrics.video_views,metrics.average_cpm,metrics.ctr from campaign where campaign.id > 0 \" + ([\"allTime\", undefined, \"\"].includes($parameter.additionalOptions?.dateRange) ? \"\" : \" and segments.date DURING \" + $parameter.additionalOptions.dateRange) + \" \" + ([\"all\", undefined, \"\"].includes($parameter.additionalOptions?.campaignStatus) ? \"\" : \" and campaign.status = '\" + $parameter.additionalOptions.campaignStatus + \"'\") + \"\" }}"},"headers":{"login-customer-id":"={{$parameter[\"managerCustomerId\"].toString().replace(/-/g, \"\")}}"}},"output":{"postReceive":[null]}},"action":"Get many campaigns"},{"name":"Get","value":"get","description":"Get a specific campaign","routing":{"request":{"method":"POST","url":"={{\"/v17/customers/\" + $parameter[\"clientCustomerId\"].toString().replace(/-/g, \"\") + \"/googleAds:search\"}}","returnFullResponse":true,"body":{"query":"={{ \"select campaign.id, campaign.name, campaign_budget.amount_micros, campaign_budget.period,campaign.status,campaign.optimization_score,campaign.advertising_channel_type,campaign.advertising_channel_sub_type,metrics.impressions,metrics.interactions,metrics.interaction_rate,metrics.average_cost,metrics.cost_micros,metrics.conversions,metrics.cost_per_conversion,metrics.conversions_from_interactions_rate,metrics.video_views,metrics.average_cpm,metrics.ctr from campaign where campaign.id = \" + $parameter[\"campaignId\"].toString().replace(/-/g, \"\")}}"},"headers":{"login-customer-id":"={{$parameter[\"managerCustomerId\"].toString().replace(/-/g, \"\")}}"}},"output":{"postReceive":[null]}},"action":"Get a campaign"}],"default":"getAll"},{"displayName":"Divide field names expressed with <i>micros</i> by 1,000,000 to get the actual value","name":"campaigsNotice","type":"notice","default":"","displayOptions":{"show":{"resource":["campaign"]}}},{"displayName":"Manager Customer ID","name":"managerCustomerId","type":"string","required":true,"placeholder":"9998887777","displayOptions":{"show":{"resource":["campaign"]}},"default":""},{"displayName":"Client Customer ID","name":"clientCustomerId","type":"string","required":true,"placeholder":"6665554444","displayOptions":{"show":{"resource":["campaign"]}},"default":""},{"displayName":"Campaign ID","name":"campaignId","type":"string","required":true,"displayOptions":{"show":{"operation":["get"],"resource":["campaign"]}},"default":"","description":"ID of the campaign"},{"displayName":"Additional Options","name":"additionalOptions","type":"collection","displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"]}},"default":{},"description":"Additional options for fetching campaigns","placeholder":"Add option","options":[{"displayName":"Date Range","name":"dateRange","description":"Filters statistics by period","type":"options","options":[{"name":"All Time","value":"allTime","description":"Fetch statistics for all period"},{"name":"Today","value":"TODAY","description":"Today only"},{"name":"Yesterday","value":"YESTERDAY","description":"Yesterday only"},{"name":"Last 7 Days","value":"LAST_7_DAYS","description":"Last 7 days, not including today"},{"name":"Last Business Week","value":"LAST_BUSINESS_WEEK","description":"The 5 day business week, Monday through Friday, of the previous business week"},{"name":"This Month","value":"THIS_MONTH","description":"All days in the current month"},{"name":"Last Month","value":"LAST_MONTH","description":"All days in the previous month"},{"name":"Last 14 Days","value":"LAST_14_DAYS","description":"The last 14 days not including today"},{"name":"Last 30 Days","value":"LAST_30_DAYS","description":"The last 30 days not including today"}],"default":"allTime"},{"displayName":"Show Campaigns by Status","name":"campaignStatus","description":"Filters campaigns by status","type":"options","options":[{"name":"All","value":"all","description":"Fetch all campaigns regardless of status"},{"name":"Enabled","value":"ENABLED","description":"Filter only active campaigns"},{"name":"Paused","value":"PAUSED","description":"Filter only paused campaigns"},{"name":"Removed","value":"REMOVED","description":"Filter only removed campaigns"}],"default":"all"}]},{"displayName":"Request Options","name":"requestOptions","type":"collection","isNodeSetting":true,"placeholder":"Add Option","default":{},"options":[{"displayName":"Batching","name":"batching","placeholder":"Add Batching","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{"batch":{}},"options":[{"displayName":"Batching","name":"batch","values":[{"displayName":"Items per Batch","name":"batchSize","type":"number","typeOptions":{"minValue":-1},"default":50,"description":"Input will be split in batches to throttle requests. -1 for disabled. 0 will be treated as 1."},{"displayName":"Batch Interval (ms)","name":"batchInterval","type":"number","typeOptions":{"minValue":0},"default":1000,"description":"Time (in milliseconds) between each batch of requests. 0 for disabled."}]}]},{"displayName":"Ignore SSL Issues","name":"allowUnauthorizedCerts","type":"boolean","noDataExpression":true,"default":false,"description":"Whether to accept the response even if SSL certificate validation is not possible"},{"displayName":"Proxy","name":"proxy","type":"string","default":"","placeholder":"e.g. http://myproxy:3128","description":"HTTP proxy to use. If authentication is required it can be defined as follow: http://username:password@myproxy:3128"},{"displayName":"Timeout","name":"timeout","type":"number","typeOptions":{"minValue":1},"default":10000,"description":"Time in ms to wait for the server to send response headers (and start the response body) before aborting the request"}]}],"codex":{"categories":["Analytics"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googleads/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Ads/googleAds.svg"},
|
|
142
|
+
{"displayName":"Google Analytics","name":"n8n-nodes-base.googleAnalytics","group":["transform"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Use the Google Analytics API","defaultVersion":2,"version":2,"defaults":{"name":"Google Analytics"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleAnalyticsOAuth2","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Report","value":"report"},{"name":"User Activity","value":"userActivity"}],"default":"report"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["report"]}},"options":[{"name":"Get","value":"get","description":"Return the analytics data","action":"Get a report"}],"default":"get"},{"displayName":"Property Type","name":"propertyType","type":"options","noDataExpression":true,"description":"Google Analytics 4 is the latest version. Universal Analytics is an older version that is not fully functional after the end of June 2023.","options":[{"name":"Google Analytics 4","value":"ga4"},{"name":"Universal Analytics","value":"universal"}],"default":"ga4","displayOptions":{"show":{"resource":["report"],"operation":["get"]}}},{"displayName":"Property","name":"propertyId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"The Property of Google Analytics","hint":"If this doesn't work, try changing the 'Property Type' field above","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a property...","typeOptions":{"searchListMethod":"searchProperties","searchFilterRequired":false,"searchable":false}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://analytics.google.com/analytics/...","validation":[{"type":"regex","properties":{"regex":".*analytics\\.google\\.com\\/analytics.*\\/p([0-9]{1,})(?:\\/.*|)*","errorMessage":"Not a valid Google Analytics URL"}}],"extractValue":{"type":"regex","regex":".*analytics\\.google\\.com\\/analytics.*\\/p([0-9]{1,})(?:\\/.*|)"}},{"displayName":"By ID","name":"id","type":"string","placeholder":"123456","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,}","errorMessage":"Not a valid Google Analytics Property ID"}}],"url":"=https://analytics.google.com/analytics/web/#/p{{$value}}/"}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Date Range","name":"dateRange","type":"options","required":true,"options":[{"name":"Last 7 Days","value":"last7days"},{"name":"Last 30 Days","value":"last30days"},{"name":"Today","value":"today"},{"name":"Yesterday","value":"yesterday"},{"name":"Last Complete Calendar Week","value":"lastCalendarWeek"},{"name":"Last Complete Calendar Month","value":"lastCalendarMonth"},{"name":"Custom","value":"custom"}],"default":"last7days","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Start","name":"startDate","type":"dateTime","required":true,"default":"2024-10-08T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"dateRange":["custom"],"propertyType":["ga4"]}}},{"displayName":"End","name":"endDate","type":"dateTime","required":true,"default":"2024-10-15T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"dateRange":["custom"],"propertyType":["ga4"]}}},{"displayName":"Metrics","name":"metricsGA4","type":"fixedCollection","default":{"metricValues":[{"listName":"totalUsers"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add Metric","description":"The quantitative measurements of a report. For example, the metric eventCount is the total number of events. Requests are allowed up to 10 metrics.","options":[{"displayName":"Values","name":"metricValues","values":[{"displayName":"Metric","name":"listName","type":"options","default":"totalUsers","options":[{"name":"1 Day Active Users","value":"active1DayUsers"},{"name":"28 Day Active Users","value":"active28DayUsers"},{"name":"7 Day Active Users","value":"active7DayUsers"},{"name":"Checkouts","value":"checkouts"},{"name":"Events","value":"eventCount"},{"name":"Page Views","value":"screenPageViews"},{"name":"Session Duration","value":"userEngagementDuration"},{"name":"Sessions","value":"sessions"},{"name":"Sessions per User","value":"sessionsPerUser"},{"name":"Total Users","value":"totalUsers"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"totalUsers","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Expression","name":"expression","type":"string","default":"","description":"A mathematical expression for derived metrics. For example, the metric Event count per user is eventCount/totalUsers.","placeholder":"e.g. eventCount/totalUsers","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Invisible","name":"invisible","type":"boolean","default":false,"displayOptions":{"show":{"listName":["custom"]}},"description":"Whether a metric is invisible in the report response. If a metric is invisible, the metric will not produce a column in the response, but can be used in metricFilter, orderBys, or a metric expression."}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Dimensions to split by","name":"dimensionsGA4","type":"fixedCollection","default":{"dimensionValues":[{"listName":"date"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension","description":"Dimensions are attributes of your data. For example, the dimension city indicates the city from which an event originates. Dimension values in report responses are strings; for example, the city could be \"Paris\" or \"New York\". Requests are allowed up to 9 dimensions.","options":[{"displayName":"Values","name":"dimensionValues","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["ga4"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["ga4"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":1000},"default":50,"description":"Max number of results to return"},{"displayName":"Simplify Output","name":"simple","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["ga4"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["ga4"]}},"options":[{"displayName":"Currency Code","name":"currencyCode","type":"string","default":"","description":"A currency code in ISO4217 format, such as \"AED\", \"USD\", \"JPY\". If the field is empty, the report uses the property's default currency."},{"displayName":"Dimensions Filters","name":"dimensionFiltersUI","type":"fixedCollection","default":{},"placeholder":"Add Filter","options":[{"displayName":"Filter Expressions","name":"filterExpressions","values":[{"displayName":"Filter Expression Type","name":"filterExpressionType","type":"options","default":"andGroup","options":[{"name":"And Group","value":"andGroup"},{"name":"Or Group","value":"orGroup"}]},{"displayName":"Expression","name":"expression","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Expression","options":[{"displayName":"String Filter","name":"stringFilter","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Value","name":"value","type":"string","default":""},{"displayName":"Case Sensitive","name":"caseSensitive","type":"boolean","default":true},{"displayName":"Match Type","name":"matchType","type":"options","default":"EXACT","options":[{"name":"Begins With","value":"BEGINS_WITH"},{"name":"Contains Value","value":"CONTAINS"},{"name":"Ends With","value":"ENDS_WITH"},{"name":"Exact Match","value":"EXACT"},{"name":"Full Match for the Regular Expression","value":"FULL_REGEXP"},{"name":"Partial Match for the Regular Expression","value":"PARTIAL_REGEXP"}]}]},{"displayName":"In List Filter","name":"inListFilter","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Values","name":"values","type":"string","default":"","hint":"Comma separated list of values. Must be non-empty."},{"displayName":"Case Sensitive","name":"caseSensitive","type":"boolean","default":true}]},{"displayName":"Numeric Filter","name":"numericFilter","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"date","options":[{"name":"Browser","value":"browser"},{"name":"Campaign","value":"campaignName"},{"name":"City","value":"city"},{"name":"Country","value":"country"},{"name":"Date","value":"date"},{"name":"Device Category","value":"deviceCategory"},{"name":"Item Name","value":"itemName"},{"name":"Language","value":"language"},{"name":"Page Location","value":"pageLocation"},{"name":"Source / Medium","value":"sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"date","description":"The name of the dimension. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Value Type","name":"valueType","type":"options","default":"doubleValue","options":[{"name":"Double Value","value":"doubleValue"},{"name":"Integer Value","value":"int64Value"}]},{"displayName":"Value","name":"value","type":"string","default":""},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"EQUAL","options":[{"name":"Equal","value":"EQUAL"},{"name":"Greater Than","value":"GREATER_THAN"},{"name":"Greater than or Equal","value":"GREATER_THAN_OR_EQUAL"},{"name":"Less Than","value":"LESS_THAN"},{"name":"Less than or Equal","value":"LESS_THAN_OR_EQUAL"}]}]}]}]}]},{"displayName":"Metric Aggregation","name":"metricAggregations","type":"multiOptions","default":[],"options":[{"name":"MAXIMUM","value":"MAXIMUM"},{"name":"MINIMUM","value":"MINIMUM"},{"name":"TOTAL","value":"TOTAL"}],"displayOptions":{"show":{"/simple":[false]}}},{"displayName":"Metrics Filters","name":"metricsFiltersUI","type":"fixedCollection","default":{},"placeholder":"Add Filter","options":[{"displayName":"Filter Expressions","name":"filterExpressions","values":[{"displayName":"Filter Expression Type","name":"filterExpressionType","type":"options","default":"andGroup","options":[{"name":"And Group","value":"andGroup"},{"name":"Or Group","value":"orGroup"}]},{"displayName":"Expression","name":"expression","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Expression","options":[{"displayName":"Between Filter","name":"betweenFilter","values":[{"displayName":"Metric","name":"listName","type":"options","default":"totalUsers","options":[{"name":"1 Day Active Users","value":"active1DayUsers"},{"name":"28 Day Active Users","value":"active28DayUsers"},{"name":"7 Day Active Users","value":"active7DayUsers"},{"name":"Checkouts","value":"checkouts"},{"name":"Events","value":"eventCount"},{"name":"Page Views","value":"screenPageViews"},{"name":"Session Duration","value":"userEngagementDuration"},{"name":"Sessions","value":"sessions"},{"name":"Sessions per User","value":"sessionsPerUser"},{"name":"Total Users","value":"totalUsers"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"totalUsers","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Value Type","name":"valueType","type":"options","default":"doubleValue","options":[{"name":"Double Value","value":"doubleValue"},{"name":"Integer Value","value":"int64Value"}]},{"displayName":"From Value","name":"fromValue","type":"string","default":""},{"displayName":"To Value","name":"toValue","type":"string","default":""}]},{"displayName":"Numeric Filter","name":"numericFilter","values":[{"displayName":"Metric","name":"listName","type":"options","default":"totalUsers","options":[{"name":"1 Day Active Users","value":"active1DayUsers"},{"name":"28 Day Active Users","value":"active28DayUsers"},{"name":"7 Day Active Users","value":"active7DayUsers"},{"name":"Checkouts","value":"checkouts"},{"name":"Events","value":"eventCount"},{"name":"Page Views","value":"screenPageViews"},{"name":"Session Duration","value":"userEngagementDuration"},{"name":"Sessions","value":"sessions"},{"name":"Sessions per User","value":"sessionsPerUser"},{"name":"Total Users","value":"totalUsers"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"totalUsers","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Value Type","name":"valueType","type":"options","default":"doubleValue","options":[{"name":"Double Value","value":"doubleValue"},{"name":"Integer Value","value":"int64Value"}]},{"displayName":"Value","name":"value","type":"string","default":""},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"EQUAL","options":[{"name":"Equal","value":"EQUAL"},{"name":"Greater Than","value":"GREATER_THAN"},{"name":"Greater than or Equal","value":"GREATER_THAN_OR_EQUAL"},{"name":"Less Than","value":"LESS_THAN"},{"name":"Less than or Equal","value":"LESS_THAN_OR_EQUAL"}]}]}]}]}]},{"displayName":"Keep Empty Rows","name":"keepEmptyRows","type":"boolean","default":false,"description":"Whether false or unspecified, each row with all metrics equal to 0 will not be returned. If true, these rows will be returned if they are not separately removed by a filter."},{"displayName":"Order By","name":"orderByUI","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Order","description":"Specifies how rows are ordered in the response","options":[{"displayName":"Metric Order By","name":"metricOrderBy","values":[{"displayName":"Descending","name":"desc","type":"boolean","default":false,"description":"Whether true, sorts by descending order"},{"displayName":"Metric Name or ID","name":"metricName","type":"options","typeOptions":{"loadOptionsMethod":"getMetricsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"","description":"Sorts by metric values. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."}]},{"displayName":"Dimmension Order By","name":"dimmensionOrderBy","values":[{"displayName":"Descending","name":"desc","type":"boolean","default":false,"description":"Whether true, sorts by descending order"},{"displayName":"Dimmension Name or ID","name":"dimensionName","type":"options","typeOptions":{"loadOptionsMethod":"getDimensionsGA4","loadOptionsDependsOn":["propertyId.value"]},"default":"","description":"Sorts by metric values. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Order Type","name":"orderType","type":"options","default":"ORDER_TYPE_UNSPECIFIED","options":[{"name":"Alphanumeric","value":"ALPHANUMERIC","description":"Alphanumeric sort by Unicode code point"},{"name":"Case Insensitive Alphanumeric","value":"CASE_INSENSITIVE_ALPHANUMERIC","description":"Case insensitive alphanumeric sort by lower case Unicode code point"},{"name":"Numeric","value":"NUMERIC","description":"Dimension values are converted to numbers before sorting"},{"name":"Unspecified","value":"ORDER_TYPE_UNSPECIFIED"}]}]}]},{"displayName":"Return Property Quota","name":"returnPropertyQuota","type":"boolean","default":false,"description":"Whether to return the current state of this Analytics Property's quota. Quota is returned in PropertyQuota.","displayOptions":{"show":{"/simple":[false]}}}]},{"displayName":"View","name":"viewId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"The View of Google Analytics","hint":"If this doesn't work, try changing the 'Property Type' field above","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a view...","typeOptions":{"searchListMethod":"searchViews","searchFilterRequired":false,"searchable":false}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://analytics.google.com/analytics/...","validation":[{"type":"regex","properties":{"regex":".*analytics.google.com/analytics.*p[0-9]{1,}.*","errorMessage":"Not a valid Google Analytics URL"}}],"extractValue":{"type":"regex","regex":".*analytics.google.com/analytics.*p([0-9]{1,})"}},{"displayName":"By ID","name":"id","type":"string","placeholder":"123456","validation":[{"type":"regex","properties":{"regex":"[0-9]{1,}","errorMessage":"Not a valid Google Analytics View ID"}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Date Range","name":"dateRange","type":"options","required":true,"options":[{"name":"Last 7 Days","value":"last7days"},{"name":"Last 30 Days","value":"last30days"},{"name":"Today","value":"today"},{"name":"Yesterday","value":"yesterday"},{"name":"Last Complete Calendar Week","value":"lastCalendarWeek"},{"name":"Last Complete Calendar Month","value":"lastCalendarMonth"},{"name":"Custom","value":"custom"}],"default":"last7days","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Start","name":"startDate","type":"dateTime","required":true,"default":"2024-10-08T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"],"dateRange":["custom"]}}},{"displayName":"End","name":"endDate","type":"dateTime","required":true,"default":"2024-10-15T00:00:00.000+00:00","displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"],"dateRange":["custom"]}}},{"displayName":"Metrics","name":"metricsUA","type":"fixedCollection","default":{"metricValues":[{"listName":"ga:users"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add metric","description":"Metrics in the request","options":[{"displayName":"Metric","name":"metricValues","values":[{"displayName":"Metric","name":"listName","type":"options","default":"ga:users","options":[{"name":"Checkouts","value":"ga:productCheckouts"},{"name":"Events","value":"ga:totalEvents"},{"name":"Page Views","value":"ga:pageviews"},{"name":"Session Duration","value":"ga:sessionDuration"},{"name":"Sessions","value":"ga:sessions"},{"name":"Sessions per User","value":"ga:sessionsPerUser"},{"name":"Total Users","value":"ga:users"},{"name":"Other metrics…","value":"other"},{"name":"Custom metric…","value":"custom"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getMetrics","loadOptionsDependsOn":["viewId.value"]},"default":"ga:users","hint":"If expression is specified, name can be any string that you would like","description":"The name of the metric. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Name","name":"name","type":"string","default":"custom_metric","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Expression","name":"expression","type":"string","default":"","placeholder":"e.g. ga:totalRefunds/ga:users","description":"Learn more about Google Analytics <a href=\"https://developers.google.com/analytics/devguides/reporting/core/v4/rest/v4/reports/batchGet#Metric\">metric expressions</a>","displayOptions":{"show":{"listName":["custom"]}}},{"displayName":"Formatting Type","name":"formattingType","type":"options","default":"INTEGER","description":"Specifies how the metric expression should be formatted","options":[{"name":"Currency","value":"CURRENCY"},{"name":"Float","value":"FLOAT"},{"name":"Integer","value":"INTEGER"},{"name":"Percent","value":"PERCENT"},{"name":"Time","value":"TIME"}],"displayOptions":{"show":{"listName":["custom"]}}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Dimensions to split by","name":"dimensionsUA","type":"fixedCollection","default":{"dimensionValues":[{"listName":"ga:date"}]},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension","description":"Dimensions are attributes of your data. For example, the dimension ga:city indicates the city, for example, \"Paris\" or \"New York\", from which a session originates.","options":[{"displayName":"Values","name":"dimensionValues","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"ga:date","options":[{"name":"Browser","value":"ga:browser"},{"name":"Campaign","value":"ga:campaign"},{"name":"City","value":"ga:city"},{"name":"Country","value":"ga:country"},{"name":"Date","value":"ga:date"},{"name":"Device Category","value":"ga:deviceCategory"},{"name":"Item Name","value":"ga:productName"},{"name":"Language","value":"ga:language"},{"name":"Page","value":"ga:pagePath"},{"name":"Source / Medium","value":"ga:sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensions","loadOptionsDependsOn":["viewId.value"]},"default":"ga:date","description":"Name of the dimension to fetch, for example ga:browser. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}}]}],"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["universal"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["universal"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":1000},"default":50,"description":"Max number of results to return"},{"displayName":"Simplify Output","name":"simple","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"],"propertyType":["universal"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["report"],"operation":["get"],"propertyType":["universal"]}},"options":[{"displayName":"Dimension Filters","name":"dimensionFiltersUi","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension Filter","description":"Dimension Filters in the request","options":[{"displayName":"Filters","name":"filterValues","values":[{"displayName":"Dimension","name":"listName","type":"options","default":"ga:date","options":[{"name":"Browser","value":"ga:browser"},{"name":"Campaign","value":"ga:campaign"},{"name":"City","value":"ga:city"},{"name":"Country","value":"ga:country"},{"name":"Date","value":"ga:date"},{"name":"Device Category","value":"ga:deviceCategory"},{"name":"Item Name","value":"ga:productName"},{"name":"Language","value":"ga:language"},{"name":"Page","value":"ga:pagePath"},{"name":"Source / Medium","value":"ga:sourceMedium"},{"name":"Other dimensions…","value":"other"}]},{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensions","loadOptionsDependsOn":["viewId.value"]},"default":"ga:date","description":"Name of the dimension to fetch, for example ga:browser. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"listName":["other"]}}},{"displayName":"Operator","name":"operator","type":"options","default":"EXACT","description":"Operator to use in combination with value","options":[{"name":"Begins With","value":"BEGINS_WITH"},{"name":"Ends With","value":"ENDS_WITH"},{"name":"Equals (Number)","value":"NUMERIC_EQUAL"},{"name":"Exactly Matches","value":"EXACT"},{"name":"Greater Than (Number)","value":"NUMERIC_GREATER_THAN"},{"name":"Less Than (Number)","value":"NUMERIC_LESS_THAN"},{"name":"Partly Matches","value":"PARTIAL"},{"name":"Regular Expression","value":"REGEXP"}]},{"displayName":"Value","name":"expressions","type":"string","default":"","placeholder":"","description":"String or <a href=\"https://support.google.com/analytics/answer/1034324?hl=en\">regular expression</a> to match against"}]}]},{"displayName":"Hide Totals","name":"hideTotals","type":"boolean","default":false,"description":"Whether to hide the total of all metrics for all the matching rows, for every date range","displayOptions":{"show":{"/simple":[false]}}},{"displayName":"Hide Value Ranges","name":"hideValueRanges","type":"boolean","default":false,"description":"Whether to hide the minimum and maximum across all matching rows","displayOptions":{"show":{"/simple":[false]}}},{"displayName":"Include Empty Rows","name":"includeEmptyRows","type":"boolean","default":false,"description":"Whether the response exclude rows if all the retrieved metrics are equal to zero"},{"displayName":"Use Resource Quotas","name":"useResourceQuotas","type":"boolean","default":false,"description":"Whether to enable resource based quotas","displayOptions":{"show":{"/simple":[false]}}}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["userActivity"]}},"options":[{"name":"Search","value":"search","description":"Return user activity data","action":"Search user activity data"}],"default":"search"},{"displayName":"View Name or ID","name":"viewId","type":"options","typeOptions":{"loadOptionsMethod":"getViews"},"default":"","required":true,"displayOptions":{"show":{"resource":["userActivity"],"operation":["search"]}},"placeholder":"123456","description":"The view from Google Analytics. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"If there's nothing here, try changing the 'Property type' field above"},{"displayName":"User ID","name":"userId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["userActivity"],"operation":["search"]}},"placeholder":"123456","description":"ID of a user"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["search"],"resource":["userActivity"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["search"],"resource":["userActivity"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["search"],"resource":["userActivity"]}},"options":[{"displayName":"Activity Types","name":"activityTypes","type":"multiOptions","options":[{"name":"Ecommerce","value":"ECOMMERCE"},{"name":"Event","value":"EVENT"},{"name":"Goal","value":"GOAL"},{"name":"Pageview","value":"PAGEVIEW"},{"name":"Screenview","value":"SCREENVIEW"}],"description":"Type of activites requested","default":[]}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Analytics/analytics.svg","codex":{"categories":["Analytics"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}}},
|
|
142
143
|
{"displayName":"Google Analytics","name":"n8n-nodes-base.googleAnalytics","group":["transform"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Use the Google Analytics API","defaultVersion":2,"version":1,"defaults":{"name":"Google Analytics"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleAnalyticsOAuth2","required":true}],"properties":[{"displayName":"<strong>New node version available:</strong> get the latest version with added features from the nodes panel.","name":"oldVersionNotice","type":"notice","default":""},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Report","value":"report"},{"name":"User Activity","value":"userActivity"}],"default":"report"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["report"]}},"options":[{"name":"Get","value":"get","description":"Return the analytics data","action":"Get a report"}],"default":"get"},{"displayName":"View Name or ID","name":"viewId","type":"options","typeOptions":{"loadOptionsMethod":"getViews"},"default":"","required":true,"displayOptions":{"show":{"resource":["report"],"operation":["get"]}},"placeholder":"123456","description":"The View ID of Google Analytics. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["get"],"resource":["report"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":1000},"default":1000,"description":"Max number of results to return"},{"displayName":"Simplify","name":"simple","type":"boolean","displayOptions":{"show":{"operation":["get"],"resource":["report"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["report"],"operation":["get"]}},"options":[{"displayName":"Date Ranges","name":"dateRangesUi","placeholder":"Add Date Range","type":"fixedCollection","default":{},"description":"Date ranges in the request","options":[{"displayName":"Date Range","name":"dateRanges","values":[{"displayName":"Start Date","name":"startDate","type":"dateTime","default":""},{"displayName":"End Date","name":"endDate","type":"dateTime","default":""}]}]},{"displayName":"Dimensions","name":"dimensionUi","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension","description":"Dimensions are attributes of your data. For example, the dimension ga:city indicates the city, for example, \"Paris\" or \"New York\", from which a session originates.","options":[{"displayName":"Dimension","name":"dimensionValues","values":[{"displayName":"Name or ID","name":"name","type":"options","typeOptions":{"loadOptionsMethod":"getDimensions"},"default":"","description":"Name of the dimension to fetch, for example ga:browser. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."}]}]},{"displayName":"Dimension Filters","name":"dimensionFiltersUi","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Dimension Filter","description":"Dimension Filters in the request","options":[{"displayName":"Filters","name":"filterValues","values":[{"displayName":"Dimension Name or ID","name":"dimensionName","type":"options","typeOptions":{"loadOptionsMethod":"getDimensions"},"default":"","description":"Name of the dimension to filter by. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Operator","name":"operator","type":"options","default":"EXACT","description":"Operator to use in combination with value","options":[{"name":"Begins With","value":"BEGINS_WITH"},{"name":"Ends With","value":"ENDS_WITH"},{"name":"Equal (Number)","value":"NUMERIC_EQUAL"},{"name":"Exact","value":"EXACT"},{"name":"Greater Than (Number)","value":"NUMERIC_GREATER_THAN"},{"name":"Less Than (Number)","value":"NUMERIC_LESS_THAN"},{"name":"Partial","value":"PARTIAL"},{"name":"Regular Expression","value":"REGEXP"}]},{"displayName":"Value","name":"expressions","type":"string","default":"","placeholder":"ga:newUsers","description":"String or <a href=\"https://support.google.com/analytics/answer/1034324?hl=en\">regular expression</a> to match against"}]}]},{"displayName":"Hide Totals","name":"hideTotals","type":"boolean","default":false,"description":"Whether to hide the total of all metrics for all the matching rows, for every date range"},{"displayName":"Hide Value Ranges","name":"hideValueRanges","type":"boolean","default":false,"description":"Whether to hide the minimum and maximum across all matching rows"},{"displayName":"Include Empty Rows","name":"includeEmptyRows","type":"boolean","default":false,"description":"Whether the response exclude rows if all the retrieved metrics are equal to zero"},{"displayName":"Metrics","name":"metricsUi","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"placeholder":"Add Metrics","description":"Metrics in the request","options":[{"displayName":"Metric","name":"metricValues","values":[{"displayName":"Alias","name":"alias","type":"string","default":"","description":"An alias for the metric expression is an alternate name for the expression. The alias can be used for filtering and sorting."},{"displayName":"Expression","name":"expression","type":"string","default":"ga:newUsers","description":"<p>A metric expression in the request. An expression is constructed from one or more metrics and numbers.</p><p>Accepted operators include: Plus (+), Minus (-), Negation (Unary -), Divided by (/), Multiplied by (*), Parenthesis, Positive cardinal numbers (0-9), can include decimals and is limited to 1024 characters.</p><p>Example ga:totalRefunds/ga:users, in most cases the metric expression is just a single metric name like ga:users.</p><p>Adding mixed MetricType (E.g., CURRENCY + PERCENTAGE) metrics will result in unexpected results.</p>."},{"displayName":"Formatting Type","name":"formattingType","type":"options","default":"INTEGER","description":"Specifies how the metric expression should be formatted","options":[{"name":"Currency","value":"CURRENCY"},{"name":"Float","value":"FLOAT"},{"name":"Integer","value":"INTEGER"},{"name":"Percent","value":"PERCENT"},{"name":"Time","value":"TIME"}]}]}]},{"displayName":"Use Resource Quotas","name":"useResourceQuotas","type":"boolean","default":false,"description":"Whether to enable resource based quotas"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["userActivity"]}},"options":[{"name":"Search","value":"search","description":"Return user activity data","action":"Search user activity data"}],"default":"search"},{"displayName":"View Name or ID","name":"viewId","type":"options","typeOptions":{"loadOptionsMethod":"getViews"},"default":"","required":true,"displayOptions":{"show":{"resource":["userActivity"],"operation":["search"]}},"placeholder":"123456","description":"The View ID of Google Analytics. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"User ID","name":"userId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["userActivity"],"operation":["search"]}},"placeholder":"123456","description":"ID of a user"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["search"],"resource":["userActivity"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["search"],"resource":["userActivity"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["search"],"resource":["userActivity"]}},"options":[{"displayName":"Activity Types","name":"activityTypes","type":"multiOptions","options":[{"name":"Ecommerce","value":"ECOMMERCE"},{"name":"Event","value":"EVENT"},{"name":"Goal","value":"GOAL"},{"name":"Pageview","value":"PAGEVIEW"},{"name":"Screenview","value":"SCREENVIEW"}],"description":"Type of activites requested","default":[]}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Analytics/analytics.svg","codex":{"categories":["Analytics"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googleanalytics/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}}},
|
|
143
144
|
{"displayName":"Google BigQuery","name":"n8n-nodes-base.googleBigQuery","group":["input"],"subtitle":"={{$parameter[\"operation\"]}}","description":"Consume Google BigQuery API","defaultVersion":2.1,"version":[2,2.1],"defaults":{"name":"Google BigQuery"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleApi","required":true,"displayOptions":{"show":{"authentication":["serviceAccount"]}}},{"name":"googleBigQueryOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","noDataExpression":true,"options":[{"name":"OAuth2 (recommended)","value":"oAuth2"},{"name":"Service Account","value":"serviceAccount"}],"default":"oAuth2"},{"displayName":"Resource","name":"resource","type":"hidden","noDataExpression":true,"options":[{"name":"Database","value":"database"}],"default":"database"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["database"]}},"options":[{"name":"Execute Query","value":"executeQuery","description":"Execute a SQL query","action":"Execute a SQL query"},{"name":"Insert","value":"insert","description":"Insert rows in a table","action":"Insert rows in a table"}],"default":"executeQuery"},{"displayName":"Project","name":"projectId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","typeOptions":{"searchListMethod":"searchProjects","searchable":true}},{"displayName":"By URL","name":"url","type":"string","extractValue":{"type":"regex","regex":"https:\\/\\/console.cloud.google.com\\/bigquery\\?project=([0-9a-zA-Z\\-_]+).{0,}"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/console.cloud.google.com\\/bigquery\\?project=([0-9a-zA-Z\\-_]+).{0,}","errorMessage":"Not a valid BigQuery Project URL"}}]},{"displayName":"By ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[a-zA-Z0-9\\-_]{2,}","errorMessage":"Not a valid BigQuery Project ID"}}],"url":"=https://console.cloud.google.com/bigquery?project={{$value}}"}],"description":"Projects to which you have been granted any project role","displayOptions":{"show":{"resource":["database"],"operation":["executeQuery","insert"]}}},{"displayName":"Dataset","name":"datasetId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","typeOptions":{"searchListMethod":"searchDatasets","searchable":true}},{"displayName":"By ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[a-zA-Z0-9\\-_]{2,}","errorMessage":"Not a valid Dataset ID"}}]}],"displayOptions":{"show":{"resource":["database"],"operation":["insert"]}}},{"displayName":"Table","name":"tableId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","typeOptions":{"searchListMethod":"searchTables","searchable":true}},{"displayName":"By ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[a-zA-Z0-9\\-_]{2,}","errorMessage":"Not a valid Table ID"}}]}],"displayOptions":{"show":{"resource":["database"],"operation":["insert"]}}},{"displayName":"SQL Query","name":"sqlQuery","type":"string","noDataExpression":true,"typeOptions":{"editor":"sqlEditor"},"displayOptions":{"hide":{"/options.useLegacySql":[true]},"show":{"resource":["database"],"operation":["executeQuery"]}},"default":"","placeholder":"SELECT * FROM dataset.table LIMIT 100","description":"SQL query to execute, you can find more information <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax\" target=\"_blank\">here</a>. Standard SQL syntax used by default, but you can also use Legacy SQL syntax by using optinon 'Use Legacy SQL'."},{"displayName":"SQL Query","name":"sqlQuery","type":"string","noDataExpression":true,"typeOptions":{"editor":"sqlEditor"},"displayOptions":{"show":{"/options.useLegacySql":[true],"resource":["database"],"operation":["executeQuery"]}},"default":"","placeholder":"SELECT * FROM [project:dataset.table] LIMIT 100;","hint":"Legacy SQL syntax","description":"SQL query to execute, you can find more information about Legacy SQL syntax <a href=\"https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax\" target=\"_blank\">here</a>"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Default Dataset Name or ID","name":"defaultDataset","type":"options","typeOptions":{"loadOptionsMethod":"getDatasets","loadOptionsDependsOn":["projectId.value"]},"default":"","description":"If not set, all table names in the query string must be qualified in the format 'datasetId.tableId'. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Dry Run","name":"dryRun","type":"boolean","default":false,"description":"Whether set to true BigQuery doesn't run the job. Instead, if the query is valid, BigQuery returns statistics about the job such as how many bytes would be processed. If the query is invalid, an error returns."},{"displayName":"Include Schema in Output","name":"includeSchema","type":"boolean","default":false,"description":"Whether to include the schema in the output. If set to true, the output will contain key '_schema' with the schema of the table.","displayOptions":{"hide":{"rawOutput":[true]}}},{"displayName":"Location (Region)","name":"location","type":"string","default":"","placeholder":"e.g. europe-west3","description":"Location or the region where data would be stored and processed. Pricing for storage and analysis is also defined by location of data and reservations, more information <a href=\"https://cloud.google.com/bigquery/docs/locations\" target=\"_blank\">here</a>."},{"displayName":"Maximum Bytes Billed","name":"maximumBytesBilled","type":"string","default":"","description":"Limits the bytes billed for this query. Queries with bytes billed above this limit will fail (without incurring a charge). String in <a href=\"https://developers.google.com/discovery/v1/type-format?utm_source=cloud.google.com&utm_medium=referral\" target=\"_blank\">Int64Value</a> format"},{"displayName":"Max Results Per Page","name":"maxResults","type":"number","default":1000,"description":"Maximum number of results to return per page of results. This is particularly useful when dealing with large datasets. It will not affect the total number of results returned, e.g. rows in a table. You can use LIMIT in your SQL query to limit the number of rows returned."},{"displayName":"Timeout","name":"timeoutMs","type":"number","default":10000,"hint":"How long to wait for the query to complete, in milliseconds","description":"Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. Be aware that the call is not guaranteed to wait for the specified timeout; it typically returns after around 200 seconds (200,000 milliseconds), even if the query is not complete."},{"displayName":"Raw Output","name":"rawOutput","type":"boolean","default":false,"displayOptions":{"hide":{"dryRun":[true]}}},{"displayName":"Use Legacy SQL","name":"useLegacySql","type":"boolean","default":false,"description":"Whether to use BigQuery's legacy SQL dialect for this query. If set to false, the query will use BigQuery's standard SQL."},{"displayName":"Return Integers as Numbers","name":"returnAsNumbers","type":"boolean","default":false,"description":"Whether all integer values will be returned as numbers. If set to false, all integer values will be returned as strings."}],"displayOptions":{"show":{"resource":["database"],"operation":["executeQuery"]}}},{"displayName":"Data Mode","name":"dataMode","type":"options","options":[{"name":"Auto-Map Input Data","value":"autoMap","description":"Use when node input properties match destination field names"},{"name":"Map Each Field Below","value":"define","description":"Set the value for each destination field"}],"default":"autoMap","description":"Whether to insert the input data this node receives in the new row","displayOptions":{"show":{"resource":["database"],"operation":["insert"]}}},{"displayName":"In this mode, make sure the incoming data fields are named the same as the columns in BigQuery. (Use an 'Edit Fields' node before this node to change them if required.)","name":"info","type":"notice","default":"","displayOptions":{"show":{"dataMode":["autoMap"],"resource":["database"],"operation":["insert"]}}},{"displayName":"Fields to Send","name":"fieldsUi","placeholder":"Add Field","type":"fixedCollection","typeOptions":{"multipleValueButtonText":"Add Field","multipleValues":true},"default":{},"options":[{"displayName":"Field","name":"values","values":[{"displayName":"Field Name or ID","name":"fieldId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsDependsOn":["projectId.value","datasetId.value","tableId.value"],"loadOptionsMethod":"getSchema"},"default":""},{"displayName":"Field Value","name":"fieldValue","type":"string","default":""}]}],"displayOptions":{"show":{"dataMode":["define"],"resource":["database"],"operation":["insert"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Batch Size","name":"batchSize","type":"number","default":100,"typeOptions":{"minValue":1}},{"displayName":"Ignore Unknown Values","name":"ignoreUnknownValues","type":"boolean","default":false,"description":"Whether to gnore row values that do not match the schema"},{"displayName":"Skip Invalid Rows","name":"skipInvalidRows","type":"boolean","default":false,"description":"Whether to skip rows with values that do not match the schema"},{"displayName":"Template Suffix","name":"templateSuffix","type":"string","default":"","description":"Create a new table based on the destination table and insert rows into the new table. The new table will be named <code>{destinationTable}{templateSuffix}</code>"},{"displayName":"Trace ID","name":"traceId","type":"string","default":"","description":"Unique ID for the request, for debugging only. It is case-sensitive, limited to up to 36 ASCII characters. A UUID is recommended."}],"displayOptions":{"show":{"resource":["database"],"operation":["insert"]}}}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/BigQuery/googleBigQuery.svg","codex":{"categories":["Data & Storage","Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}}},
|
|
144
145
|
{"displayName":"Google BigQuery","name":"n8n-nodes-base.googleBigQuery","group":["input"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Google BigQuery API","defaultVersion":2.1,"version":1,"defaults":{"name":"Google BigQuery"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleApi","required":true,"displayOptions":{"show":{"authentication":["serviceAccount"]}}},{"name":"googleBigQueryOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"properties":[{"displayName":"<strong>New node version available:</strong> get the latest version with added features from the nodes panel.","name":"oldVersionNotice","type":"notice","default":""},{"displayName":"Authentication","name":"authentication","type":"options","noDataExpression":true,"options":[{"name":"OAuth2 (recommended)","value":"oAuth2"},{"name":"Service Account","value":"serviceAccount"}],"default":"oAuth2"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Record","value":"record"}],"default":"record"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["record"]}},"options":[{"name":"Create","value":"create","description":"Create a new record","action":"Create a record"},{"name":"Get Many","value":"getAll","description":"Retrieve many records","action":"Get many records"}],"default":"create"},{"displayName":"Project Name or ID","name":"projectId","type":"options","typeOptions":{"loadOptionsMethod":"getProjects"},"required":true,"displayOptions":{"show":{"operation":["create"],"resource":["record"]}},"default":"","description":"ID of the project to create the record in. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Dataset Name or ID","name":"datasetId","type":"options","typeOptions":{"loadOptionsMethod":"getDatasets","loadOptionsDependsOn":["projectId"]},"required":true,"displayOptions":{"show":{"operation":["create"],"resource":["record"]}},"default":"","description":"ID of the dataset to create the record in. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Table Name or ID","name":"tableId","type":"options","typeOptions":{"loadOptionsMethod":"getTables","loadOptionsDependsOn":["projectId","datasetId"]},"required":true,"displayOptions":{"show":{"operation":["create"],"resource":["record"]}},"default":"","description":"ID of the table to create the record in. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Columns","name":"columns","type":"string","displayOptions":{"show":{"resource":["record"],"operation":["create"]}},"default":"","required":true,"placeholder":"id,name,description","description":"Comma-separated list of the item properties to use as columns"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["create"],"resource":["record"]}},"options":[{"displayName":"Ignore Unknown Values","name":"ignoreUnknownValues","type":"boolean","default":false,"description":"Whether to ignore row values that do not match the schema"},{"displayName":"Skip Invalid Rows","name":"skipInvalidRows","type":"boolean","default":false,"description":"Whether to skip rows with values that do not match the schema"},{"displayName":"Template Suffix","name":"templateSuffix","type":"string","default":"","description":"Create a new table based on the destination table and insert rows into the new table. The new table will be named <code>{destinationTable}{templateSuffix}</code>"},{"displayName":"Trace ID","name":"traceId","type":"string","default":"","description":"Unique ID for the request, for debugging only. It is case-sensitive, limited to up to 36 ASCII characters. A UUID is recommended."}]},{"displayName":"Project Name or ID","name":"projectId","type":"options","typeOptions":{"loadOptionsMethod":"getProjects"},"required":true,"displayOptions":{"show":{"operation":["getAll"],"resource":["record"]}},"default":"","description":"ID of the project to retrieve all rows from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Dataset Name or ID","name":"datasetId","type":"options","typeOptions":{"loadOptionsMethod":"getDatasets","loadOptionsDependsOn":["projectId"]},"required":true,"displayOptions":{"show":{"operation":["getAll"],"resource":["record"]}},"default":"","description":"ID of the dataset to retrieve all rows from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Table Name or ID","name":"tableId","type":"options","typeOptions":{"loadOptionsMethod":"getTables","loadOptionsDependsOn":["projectId","datasetId"]},"required":true,"displayOptions":{"show":{"operation":["getAll"],"resource":["record"]}},"default":"","description":"ID of the table to retrieve all rows from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["record"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["record"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Simplify","name":"simple","type":"boolean","displayOptions":{"show":{"resource":["record"],"operation":["getAll"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["getAll"],"resource":["record"]}},"options":[{"displayName":"Fields","name":"selectedFields","type":"string","default":"","description":"Subset of fields to return, supports select into sub fields. Example: <code>selectedFields = \"a,e.d.f\"</code>"}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/BigQuery/googleBigQuery.svg","codex":{"categories":["Data & Storage","Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlebigquery/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}}},
|
|
145
146
|
{"displayName":"Google Books","name":"n8n-nodes-base.googleBooks","group":["input","output"],"version":[1,2],"description":"Read data from Google Books","subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","defaults":{"name":"Google Books"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleApi","required":true,"displayOptions":{"show":{"authentication":["serviceAccount"]}}},{"name":"googleBooksOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Service Account","value":"serviceAccount"},{"name":"OAuth2","value":"oAuth2"}],"default":"serviceAccount","displayOptions":{"show":{"@version":[1]}}},{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"OAuth2 (recommended)","value":"oAuth2"},{"name":"Service Account","value":"serviceAccount"}],"default":"oAuth2","displayOptions":{"show":{"@version":[2]}}},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Bookshelf","value":"bookshelf"},{"name":"Bookshelf Volume","value":"bookshelfVolume"},{"name":"Volume","value":"volume"}],"default":"bookshelf"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Get","value":"get","description":"Retrieve a specific bookshelf resource for the specified user","action":"Get a bookshelf"},{"name":"Get Many","value":"getAll","description":"Get many public bookshelf resource for the specified user","action":"Get many bookshelves"}],"displayOptions":{"show":{"resource":["bookshelf"]}},"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Add","value":"add","description":"Add a volume to a bookshelf","action":"Add a bookshelf volume"},{"name":"Clear","value":"clear","description":"Clears all volumes from a bookshelf","action":"Clear a bookshelf volume"},{"name":"Get Many","value":"getAll","description":"Get many volumes in a specific bookshelf for the specified user","action":"Get many bookshelf volumes"},{"name":"Move","value":"move","description":"Moves a volume within a bookshelf","action":"Move a bookshelf volume"},{"name":"Remove","value":"remove","description":"Removes a volume from a bookshelf","action":"Remove a bookshelf volume"}],"displayOptions":{"show":{"resource":["bookshelfVolume"]}},"default":"getAll"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Get","value":"get","description":"Get a volume resource based on ID","action":"Get a volume"},{"name":"Get Many","value":"getAll","description":"Get many volumes filtered by query","action":"Get many volumes"}],"displayOptions":{"show":{"resource":["volume"]}},"default":"get"},{"displayName":"My Library","name":"myLibrary","type":"boolean","default":false,"required":true,"displayOptions":{"show":{"operation":["get","getAll"],"resource":["bookshelf","bookshelfVolume"]}}},{"displayName":"Search Query","name":"searchQuery","type":"string","description":"Full-text search query string","default":"","required":true,"displayOptions":{"show":{"operation":["getAll"],"resource":["volume"]}}},{"displayName":"User ID","name":"userId","type":"string","description":"ID of user","default":"","required":true,"displayOptions":{"show":{"operation":["get","getAll"],"resource":["bookshelf","bookshelfVolume"]},"hide":{"myLibrary":[true]}}},{"displayName":"Bookshelf ID","name":"shelfId","type":"string","description":"ID of the bookshelf","default":"","required":true,"displayOptions":{"show":{"operation":["get","add","clear","move","remove"],"resource":["bookshelf","bookshelfVolume"]}}},{"displayName":"Bookshelf ID","name":"shelfId","type":"string","description":"ID of the bookshelf","default":"","required":true,"displayOptions":{"show":{"operation":["getAll"],"resource":["bookshelfVolume"]}}},{"displayName":"Volume ID","name":"volumeId","type":"string","description":"ID of the volume","default":"","required":true,"displayOptions":{"show":{"operation":["add","move","remove","get"],"resource":["bookshelfVolume","volume"]}}},{"displayName":"Volume Position","name":"volumePosition","type":"string","description":"Position on shelf to move the item (0 puts the item before the current first item, 1 puts it between the first and the second and so on)","default":"","required":true,"displayOptions":{"show":{"operation":["move"],"resource":["bookshelfVolume"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":40},"default":40,"description":"Max number of results to return"}],"codex":{"categories":["Miscellaneous"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlebooks/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Books/googlebooks.svg"},
|
|
146
|
-
{"displayName":"Google Calendar","name":"n8n-nodes-base.googleCalendar","group":["input"],"version":[1,1.1],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Google Calendar API","defaults":{"name":"Google Calendar"},"inputs":["main"],"outputs":["main"],"usableAsTool":true,"credentials":[{"name":"googleCalendarOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Calendar","value":"calendar"},{"name":"Event","value":"event"}],"default":"event"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["calendar"]}},"options":[{"name":"Availability","value":"availability","description":"If a time-slot is available in a calendar","action":"Get availability in a calendar"}],"default":"availability"},{"displayName":"Calendar","name":"calendar","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"Google Calendar to operate on","modes":[{"displayName":"Calendar","name":"list","type":"list","placeholder":"Select a Calendar...","typeOptions":{"searchListMethod":"getCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*(?:[ \t]+)*$)","errorMessage":"Not a valid Google Calendar ID"}}],"extractValue":{"type":"regex","regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)"},"placeholder":"name@google.com"}],"displayOptions":{"show":{"resource":["calendar"]}}},{"displayName":"Start Time","name":"timeMin","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["availability"],"resource":["calendar"]}},"default":"","description":"Start of the interval"},{"displayName":"End Time","name":"timeMax","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["availability"],"resource":["calendar"]}},"default":"","description":"End of the interval"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","displayOptions":{"show":{"operation":["availability"],"resource":["calendar"]}},"default":{},"options":[{"displayName":"Output Format","name":"outputFormat","type":"options","options":[{"name":"Availability","value":"availability","description":"Returns if there are any events in the given time or not"},{"name":"Booked Slots","value":"bookedSlots","description":"Returns the booked slots"},{"name":"RAW","value":"raw","description":"Returns the RAW data from the API"}],"default":"availability","description":"The format to return the data in"},{"displayName":"Timezone","name":"timezone","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Time zone used in the response. By default n8n timezone is used.","modes":[{"displayName":"Timezone","name":"list","type":"list","placeholder":"Select a Timezone...","typeOptions":{"searchListMethod":"getTimezones","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmara|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Timbuktu|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/Buenos_Aires|America/Argentina/Catamarca|America/Argentina/ComodRivadavia|America/Argentina/Cordoba|America/Argentina/Jujuy|America/Argentina/La_Rioja|America/Argentina/Mendoza|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Atikokan|America/Atka|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Ensenada|America/Fort_Nelson|America/Fort_Wayne|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Indianapolis|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Louisville|America/Kentucky/Monticello|America/Knox_IN|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montreal|America/Montserrat|America/Nassau|America/New_York|America/Nipigon|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Nuuk|America/Ojinaga|America/Panama|America/Pangnirtung|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Acre|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rainy_River|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Rosario|America/Santa_Isabel|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Shiprock|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Thunder_Bay|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Virgin|America/Whitehorse|America/Winnipeg|America/Yakutat|America/Yellowknife|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/South_Pole|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Ashkhabad|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Choibalsan|Asia/Chongqing|Asia/Chungking|Asia/Colombo|Asia/Dacca|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Harbin|Asia/Hebron|Asia/Ho_Chi_Minh|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Istanbul|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Kashgar|Asia/Kathmandu|Asia/Katmandu|Asia/Khandyga|Asia/Kolkata|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macao|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Tel_Aviv|Asia/Thimbu|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ujung_Pandang|Asia/Ulaanbaatar|Asia/Ulan_Bator|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yangon|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Faroe|Atlantic/Jan_Mayen|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/ACT|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Canberra|Australia/Currie|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/LHI|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/NSW|Australia/North|Australia/Perth|Australia/Queensland|Australia/South|Australia/Sydney|Australia/Tasmania|Australia/Victoria|Australia/West|Australia/Yancowinna|Brazil/Acre|Brazil/DeNoronha|Brazil/East|Brazil/West|CET|CST6CDT|Canada/Atlantic|Canada/Central|Canada/Eastern|Canada/Mountain|Canada/Newfoundland|Canada/Pacific|Canada/Saskatchewan|Canada/Yukon|Chile/Continental|Chile/EasterIsland|Cuba|EET|EST|EST5EDT|Egypt|Eire|Etc/GMT|Etc/GMT\\+0|Etc/GMT\\+1|Etc/GMT\\+10|Etc/GMT\\+11|Etc/GMT\\+12|Etc/GMT\\+2|Etc/GMT\\+3|Etc/GMT\\+4|Etc/GMT\\+5|Etc/GMT\\+6|Etc/GMT\\+7|Etc/GMT\\+8|Etc/GMT\\+9|Etc/GMT-0|Etc/GMT-1|Etc/GMT-10|Etc/GMT-11|Etc/GMT-12|Etc/GMT-13|Etc/GMT-14|Etc/GMT-2|Etc/GMT-3|Etc/GMT-4|Etc/GMT-5|Etc/GMT-6|Etc/GMT-7|Etc/GMT-8|Etc/GMT-9|Etc/GMT0|Etc/Greenwich|Etc/UCT|Etc/UTC|Etc/Universal|Etc/Zulu|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belfast|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Kyiv|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Nicosia|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Tiraspol|Europe/Ulyanovsk|Europe/Uzhgorod|Europe/Vaduz|Europe/Vatican|Europe/Vienna|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zaporozhye|Europe/Zurich|GB|GB-Eire|GMT|GMT\\+0|GMT-0|GMT0|Greenwich|HST|Hongkong|Iceland|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Iran|Israel|Jamaica|Japan|Kwajalein|Libya|MET|MST|MST7MDT|Mexico/BajaNorte|Mexico/BajaSur|Mexico/General|NZ|NZ-CHAT|Navajo|PRC|PST8PDT|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Chuuk|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Johnston|Pacific/Kanton|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Pohnpei|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Samoa|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis|Pacific/Yap|Poland|Portugal|ROC|ROK|Singapore|Turkey|UCT|US/Alaska|US/Aleutian|US/Arizona|US/Central|US/East-Indiana|US/Eastern|US/Hawaii|US/Indiana-Starke|US/Michigan|US/Mountain|US/Pacific|US/Samoa|UTC|Universal|W-SU|WET|Zulu)[ \t]*","errorMessage":"Not a valid Timezone"}}],"extractValue":{"type":"regex","regex":"([-+/_a-zA-Z0-9]*)"},"placeholder":"Europe/Berlin"}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["event"]}},"options":[{"name":"Create","value":"create","description":"Add a event to calendar","action":"Create an event"},{"name":"Delete","value":"delete","description":"Delete an event","action":"Delete an event"},{"name":"Get","value":"get","description":"Retrieve an event","action":"Get an event"},{"name":"Get Many","value":"getAll","description":"Retrieve many events from a calendar","action":"Get many events"},{"name":"Update","value":"update","description":"Update an event","action":"Update an event"}],"default":"create"},{"displayName":"Calendar","name":"calendar","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"Google Calendar to operate on","modes":[{"displayName":"Calendar","name":"list","type":"list","placeholder":"Select a Calendar...","typeOptions":{"searchListMethod":"getCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*(?:[ \t]+)*$)","errorMessage":"Not a valid Google Calendar ID"}}],"extractValue":{"type":"regex","regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)"},"placeholder":"name@google.com"}],"displayOptions":{"show":{"resource":["event"]}}},{"displayName":"Start","name":"start","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"default":"","description":"Start time of the event"},{"displayName":"End","name":"end","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"default":"","description":"End time of the event"},{"displayName":"Use Default Reminders","name":"useDefaultReminders","type":"boolean","displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"default":true},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"options":[{"displayName":"All Day","name":"allday","type":"options","options":[{"name":"Yes","value":"yes"},{"name":"No","value":"no"}],"default":"no","description":"Whether the event is all day or not"},{"displayName":"Attendees","name":"attendees","type":"string","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Attendee"},"default":"","description":"The attendees of the event. Multiple ones can be separated by comma."},{"displayName":"Color Name or ID","name":"color","type":"options","typeOptions":{"loadOptionsMethod":"getColors"},"default":"","description":"The color of the event. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Conference Data","name":"conferenceDataUi","placeholder":"Add Conference","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{},"options":[{"displayName":"Conference Link","name":"conferenceDataValues","values":[{"displayName":"Type Name or ID","name":"conferenceSolution","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getConferenceSolutations","loadOptionsDependsOn":["calendar"]},"default":""}]}],"description":"Creates a conference link (Hangouts, Meet etc) and attaches it to the event"},{"displayName":"Description","name":"description","type":"string","default":""},{"displayName":"Guests Can Invite Others","name":"guestsCanInviteOthers","type":"boolean","default":true,"description":"Whether attendees other than the organizer can invite others to the event"},{"displayName":"Guests Can Modify","name":"guestsCanModify","type":"boolean","default":false,"description":"Whether attendees other than the organizer can modify the event"},{"displayName":"Guests Can See Other Guests","name":"guestsCanSeeOtherGuests","type":"boolean","default":true,"description":"Whether attendees other than the organizer can see who the event's attendees are"},{"displayName":"ID","name":"id","type":"string","default":"","description":"Opaque identifier of the event"},{"displayName":"Location","name":"location","type":"string","default":"","description":"Geographic location of the event as free-form text"},{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Repeat Frequency","name":"repeatFrecuency","type":"options","options":[{"name":"Daily","value":"Daily"},{"name":"Weekly","value":"weekly"},{"name":"Monthly","value":"monthly"},{"name":"Yearly","value":"yearly"}],"default":""},{"displayName":"Repeat How Many Times?","name":"repeatHowManyTimes","type":"number","typeOptions":{"minValue":1},"default":1},{"displayName":"Repeat Until","name":"repeatUntil","type":"dateTime","default":""},{"displayName":"RRULE","name":"rrule","type":"string","default":"","description":"Recurrence rule. When set, the parameters Repeat Frequency, Repeat How Many Times and Repeat Until are ignored."},{"displayName":"Send Updates","name":"sendUpdates","type":"options","options":[{"name":"All","value":"all","description":"Notifications are sent to all guests"},{"name":"External Only","value":"externalOnly","description":"Notifications are sent to non-Google Calendar guests only"},{"name":"None","value":"none","description":"No notifications are sent. This value should only be used for migration use case."}],"description":"Whether to send notifications about the creation of the new event","default":""},{"displayName":"Show Me As","name":"showMeAs","type":"options","options":[{"name":"Available","value":"transparent","description":"The event does not block time on the calendar"},{"name":"Busy","value":"opaque","description":"The event does block time on the calendar"}],"default":"opaque","description":"Whether the event blocks time on the calendar"},{"displayName":"Summary","name":"summary","type":"string","default":"","description":"Title of the event"},{"displayName":"Visibility","name":"visibility","type":"options","options":[{"name":"Confidential","value":"confidential","description":"The event is private. This value is provided for compatibility reasons."},{"name":"Default","value":"default","description":"Uses the default visibility for events on the calendar"},{"name":"Private","value":"private","description":"The event is private and only event attendees may view event details"},{"name":"Public","value":"public","description":"The event is public and event details are visible to all readers of the calendar"}],"default":"default","description":"Visibility of the event"}]},{"displayName":"Reminders","name":"remindersUi","type":"fixedCollection","default":{},"placeholder":"Add Reminder","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["event"],"operation":["create"],"useDefaultReminders":[false]}},"options":[{"name":"remindersValues","displayName":"Reminder","values":[{"displayName":"Method","name":"method","type":"options","options":[{"name":"Email","value":"email"},{"name":"Popup","value":"popup"}],"default":""},{"displayName":"Minutes Before","name":"minutes","type":"number","typeOptions":{"minValue":0,"maxValue":40320},"default":0}]}],"description":"If the event doesn't use the default reminders, this lists the reminders specific to the event"},{"displayName":"Event ID","name":"eventId","type":"string","required":true,"displayOptions":{"show":{"operation":["delete"],"resource":["event"]}},"default":""},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["delete"],"resource":["event"]}},"options":[{"displayName":"Send Updates","name":"sendUpdates","type":"options","options":[{"name":"All","value":"all","description":"Notifications are sent to all guests"},{"name":"External Only","value":"externalOnly","description":"Notifications are sent to non-Google Calendar guests only"},{"name":"None","value":"none","description":"No notifications are sent. This value should only be used for migration use case."}],"description":"Whether to send notifications about the creation of the new event","default":""}]},{"displayName":"Event ID","name":"eventId","type":"string","required":true,"displayOptions":{"show":{"operation":["get"],"resource":["event"]}},"default":""},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["get"],"resource":["event"]}},"options":[{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Timezone","name":"timeZone","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Time zone used in the response. The default is the time zone of the calendar.","modes":[{"displayName":"Timezone","name":"list","type":"list","placeholder":"Select a Timezone...","typeOptions":{"searchListMethod":"getTimezones","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmara|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Timbuktu|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/Buenos_Aires|America/Argentina/Catamarca|America/Argentina/ComodRivadavia|America/Argentina/Cordoba|America/Argentina/Jujuy|America/Argentina/La_Rioja|America/Argentina/Mendoza|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Atikokan|America/Atka|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Ensenada|America/Fort_Nelson|America/Fort_Wayne|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Indianapolis|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Louisville|America/Kentucky/Monticello|America/Knox_IN|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montreal|America/Montserrat|America/Nassau|America/New_York|America/Nipigon|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Nuuk|America/Ojinaga|America/Panama|America/Pangnirtung|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Acre|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rainy_River|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Rosario|America/Santa_Isabel|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Shiprock|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Thunder_Bay|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Virgin|America/Whitehorse|America/Winnipeg|America/Yakutat|America/Yellowknife|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/South_Pole|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Ashkhabad|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Choibalsan|Asia/Chongqing|Asia/Chungking|Asia/Colombo|Asia/Dacca|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Harbin|Asia/Hebron|Asia/Ho_Chi_Minh|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Istanbul|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Kashgar|Asia/Kathmandu|Asia/Katmandu|Asia/Khandyga|Asia/Kolkata|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macao|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Tel_Aviv|Asia/Thimbu|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ujung_Pandang|Asia/Ulaanbaatar|Asia/Ulan_Bator|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yangon|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Faroe|Atlantic/Jan_Mayen|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/ACT|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Canberra|Australia/Currie|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/LHI|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/NSW|Australia/North|Australia/Perth|Australia/Queensland|Australia/South|Australia/Sydney|Australia/Tasmania|Australia/Victoria|Australia/West|Australia/Yancowinna|Brazil/Acre|Brazil/DeNoronha|Brazil/East|Brazil/West|CET|CST6CDT|Canada/Atlantic|Canada/Central|Canada/Eastern|Canada/Mountain|Canada/Newfoundland|Canada/Pacific|Canada/Saskatchewan|Canada/Yukon|Chile/Continental|Chile/EasterIsland|Cuba|EET|EST|EST5EDT|Egypt|Eire|Etc/GMT|Etc/GMT\\+0|Etc/GMT\\+1|Etc/GMT\\+10|Etc/GMT\\+11|Etc/GMT\\+12|Etc/GMT\\+2|Etc/GMT\\+3|Etc/GMT\\+4|Etc/GMT\\+5|Etc/GMT\\+6|Etc/GMT\\+7|Etc/GMT\\+8|Etc/GMT\\+9|Etc/GMT-0|Etc/GMT-1|Etc/GMT-10|Etc/GMT-11|Etc/GMT-12|Etc/GMT-13|Etc/GMT-14|Etc/GMT-2|Etc/GMT-3|Etc/GMT-4|Etc/GMT-5|Etc/GMT-6|Etc/GMT-7|Etc/GMT-8|Etc/GMT-9|Etc/GMT0|Etc/Greenwich|Etc/UCT|Etc/UTC|Etc/Universal|Etc/Zulu|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belfast|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Kyiv|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Nicosia|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Tiraspol|Europe/Ulyanovsk|Europe/Uzhgorod|Europe/Vaduz|Europe/Vatican|Europe/Vienna|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zaporozhye|Europe/Zurich|GB|GB-Eire|GMT|GMT\\+0|GMT-0|GMT0|Greenwich|HST|Hongkong|Iceland|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Iran|Israel|Jamaica|Japan|Kwajalein|Libya|MET|MST|MST7MDT|Mexico/BajaNorte|Mexico/BajaSur|Mexico/General|NZ|NZ-CHAT|Navajo|PRC|PST8PDT|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Chuuk|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Johnston|Pacific/Kanton|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Pohnpei|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Samoa|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis|Pacific/Yap|Poland|Portugal|ROC|ROK|Singapore|Turkey|UCT|US/Alaska|US/Aleutian|US/Arizona|US/Central|US/East-Indiana|US/Eastern|US/Hawaii|US/Indiana-Starke|US/Michigan|US/Mountain|US/Pacific|US/Samoa|UTC|Universal|W-SU|WET|Zulu)[ \t]*","errorMessage":"Not a valid Timezone"}}],"extractValue":{"type":"regex","regex":"([-+/_a-zA-Z0-9]*)"},"placeholder":"Europe/Berlin"}]}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["event"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["event"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["getAll"],"resource":["event"]}},"options":[{"displayName":"After","name":"timeMin","type":"dateTime","default":"","description":"At least some part of the event must be after this time"},{"displayName":"Before","name":"timeMax","type":"dateTime","default":"","description":"At least some part of the event must be before this time"},{"displayName":"Fields","name":"fields","type":"string","placeholder":"e.g. items(ID,status,summary)","default":"","description":"Specify fields to return, by default a predefined by Google set of commonly used fields would be returned. To return all fields, use '*', <a href='https://developers.google.com/calendar/api/guides/performance#partial' target='_blank'>more info</a>."},{"displayName":"iCalUID","name":"iCalUID","type":"string","default":"","description":"Specifies event ID in the iCalendar format to be included in the response"},{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Order By","name":"orderBy","type":"options","options":[{"name":"Start Time","value":"startTime","description":"Order by the start date/time (ascending). This is only available when querying single events (i.e. the parameter singleEvents is True)."},{"name":"Updated","value":"updated","description":"Order by last modification time (ascending)"}],"default":"","description":"The order of the events returned in the result"},{"displayName":"Query","name":"query","type":"string","default":"","description":"Free text search terms to find events that match these terms in any field, except for extended properties"},{"displayName":"Show Deleted","name":"showDeleted","type":"boolean","default":false,"description":"Whether to include deleted events (with status equals \"cancelled\") in the result"},{"displayName":"Show Hidden Invitations","name":"showHiddenInvitations","type":"boolean","default":false,"description":"Whether to include hidden invitations in the result"},{"displayName":"Single Events","name":"singleEvents","type":"boolean","default":false,"description":"Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves"},{"displayName":"Timezone","name":"timeZone","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Time zone used in the response. The default is the time zone of the calendar.","modes":[{"displayName":"Timezone","name":"list","type":"list","placeholder":"Select a Timezone...","typeOptions":{"searchListMethod":"getTimezones","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmara|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Timbuktu|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/Buenos_Aires|America/Argentina/Catamarca|America/Argentina/ComodRivadavia|America/Argentina/Cordoba|America/Argentina/Jujuy|America/Argentina/La_Rioja|America/Argentina/Mendoza|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Atikokan|America/Atka|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Ensenada|America/Fort_Nelson|America/Fort_Wayne|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Indianapolis|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Louisville|America/Kentucky/Monticello|America/Knox_IN|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montreal|America/Montserrat|America/Nassau|America/New_York|America/Nipigon|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Nuuk|America/Ojinaga|America/Panama|America/Pangnirtung|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Acre|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rainy_River|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Rosario|America/Santa_Isabel|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Shiprock|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Thunder_Bay|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Virgin|America/Whitehorse|America/Winnipeg|America/Yakutat|America/Yellowknife|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/South_Pole|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Ashkhabad|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Choibalsan|Asia/Chongqing|Asia/Chungking|Asia/Colombo|Asia/Dacca|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Harbin|Asia/Hebron|Asia/Ho_Chi_Minh|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Istanbul|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Kashgar|Asia/Kathmandu|Asia/Katmandu|Asia/Khandyga|Asia/Kolkata|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macao|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Tel_Aviv|Asia/Thimbu|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ujung_Pandang|Asia/Ulaanbaatar|Asia/Ulan_Bator|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yangon|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Faroe|Atlantic/Jan_Mayen|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/ACT|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Canberra|Australia/Currie|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/LHI|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/NSW|Australia/North|Australia/Perth|Australia/Queensland|Australia/South|Australia/Sydney|Australia/Tasmania|Australia/Victoria|Australia/West|Australia/Yancowinna|Brazil/Acre|Brazil/DeNoronha|Brazil/East|Brazil/West|CET|CST6CDT|Canada/Atlantic|Canada/Central|Canada/Eastern|Canada/Mountain|Canada/Newfoundland|Canada/Pacific|Canada/Saskatchewan|Canada/Yukon|Chile/Continental|Chile/EasterIsland|Cuba|EET|EST|EST5EDT|Egypt|Eire|Etc/GMT|Etc/GMT\\+0|Etc/GMT\\+1|Etc/GMT\\+10|Etc/GMT\\+11|Etc/GMT\\+12|Etc/GMT\\+2|Etc/GMT\\+3|Etc/GMT\\+4|Etc/GMT\\+5|Etc/GMT\\+6|Etc/GMT\\+7|Etc/GMT\\+8|Etc/GMT\\+9|Etc/GMT-0|Etc/GMT-1|Etc/GMT-10|Etc/GMT-11|Etc/GMT-12|Etc/GMT-13|Etc/GMT-14|Etc/GMT-2|Etc/GMT-3|Etc/GMT-4|Etc/GMT-5|Etc/GMT-6|Etc/GMT-7|Etc/GMT-8|Etc/GMT-9|Etc/GMT0|Etc/Greenwich|Etc/UCT|Etc/UTC|Etc/Universal|Etc/Zulu|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belfast|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Kyiv|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Nicosia|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Tiraspol|Europe/Ulyanovsk|Europe/Uzhgorod|Europe/Vaduz|Europe/Vatican|Europe/Vienna|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zaporozhye|Europe/Zurich|GB|GB-Eire|GMT|GMT\\+0|GMT-0|GMT0|Greenwich|HST|Hongkong|Iceland|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Iran|Israel|Jamaica|Japan|Kwajalein|Libya|MET|MST|MST7MDT|Mexico/BajaNorte|Mexico/BajaSur|Mexico/General|NZ|NZ-CHAT|Navajo|PRC|PST8PDT|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Chuuk|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Johnston|Pacific/Kanton|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Pohnpei|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Samoa|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis|Pacific/Yap|Poland|Portugal|ROC|ROK|Singapore|Turkey|UCT|US/Alaska|US/Aleutian|US/Arizona|US/Central|US/East-Indiana|US/Eastern|US/Hawaii|US/Indiana-Starke|US/Michigan|US/Mountain|US/Pacific|US/Samoa|UTC|Universal|W-SU|WET|Zulu)[ \t]*","errorMessage":"Not a valid Timezone"}}],"extractValue":{"type":"regex","regex":"([-+/_a-zA-Z0-9]*)"},"placeholder":"Europe/Berlin"}]},{"displayName":"Updated Min","name":"updatedMin","type":"dateTime","default":"","description":"Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted."}]},{"displayName":"Event ID","name":"eventId","type":"string","required":true,"displayOptions":{"show":{"operation":["update"],"resource":["event"]}},"default":""},{"displayName":"Use Default Reminders","name":"useDefaultReminders","type":"boolean","displayOptions":{"show":{"operation":["update"],"resource":["event"]}},"default":true},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["update"],"resource":["event"]}},"options":[{"displayName":"All Day","name":"allday","type":"options","options":[{"name":"Yes","value":"yes"},{"name":"No","value":"no"}],"default":"no","description":"Whether the event is all day or not"},{"displayName":"Attendees","name":"attendees","type":"string","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Attendee"},"default":"","description":"The attendees of the event. Multiple ones can be separated by comma."},{"displayName":"Color Name or ID","name":"color","type":"options","typeOptions":{"loadOptionsMethod":"getColors"},"default":"","description":"The color of the event. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Description","name":"description","type":"string","default":""},{"displayName":"End","name":"end","type":"dateTime","default":"","description":"End time of the event"},{"displayName":"Guests Can Invite Others","name":"guestsCanInviteOthers","type":"boolean","default":true,"description":"Whether attendees other than the organizer can invite others to the event"},{"displayName":"Guests Can Modify","name":"guestsCanModify","type":"boolean","default":false,"description":"Whether attendees other than the organizer can modify the event"},{"displayName":"Guests Can See Other Guests","name":"guestsCanSeeOtherGuests","type":"boolean","default":true,"description":"Whether attendees other than the organizer can see who the event's attendees are"},{"displayName":"ID","name":"id","type":"string","default":"","description":"Opaque identifier of the event"},{"displayName":"Location","name":"location","type":"string","default":"","description":"Geographic location of the event as free-form text"},{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Repeat Frequency","name":"repeatFrecuency","type":"options","options":[{"name":"Daily","value":"Daily"},{"name":"Weekly","value":"weekly"},{"name":"Monthly","value":"monthly"},{"name":"Yearly","value":"yearly"}],"default":""},{"displayName":"Repeat How Many Times?","name":"repeatHowManyTimes","type":"number","typeOptions":{"minValue":1},"default":1},{"displayName":"Repeat Until","name":"repeatUntil","type":"dateTime","default":""},{"displayName":"RRULE","name":"rrule","type":"string","default":"","description":"Recurrence rule. When set, the parameters Repeat Frequency, Repeat How Many Times and Repeat Until are ignored."},{"displayName":"Send Updates","name":"sendUpdates","type":"options","options":[{"name":"All","value":"all","description":"Notifications are sent to all guests"},{"name":"External Only","value":"externalOnly","description":"Notifications are sent to non-Google Calendar guests only"},{"name":"None","value":"none","description":"No notifications are sent. This value should only be used for migration use case."}],"description":"Whether to send notifications about the creation of the new event","default":""},{"displayName":"Show Me As","name":"showMeAs","type":"options","options":[{"name":"Available","value":"transparent","description":"The event does not block time on the calendar"},{"name":"Busy","value":"opaque","description":"The event does block time on the calendar"}],"default":"opaque","description":"Whether the event blocks time on the calendar"},{"displayName":"Start","name":"start","type":"dateTime","default":"","description":"Start time of the event"},{"displayName":"Summary","name":"summary","type":"string","default":"","description":"Title of the event"},{"displayName":"Visibility","name":"visibility","type":"options","options":[{"name":"Confidential","value":"confidential","description":"The event is private. This value is provided for compatibility reasons."},{"name":"Default","value":"default","description":"Uses the default visibility for events on the calendar"},{"name":"Public","value":"public","description":"The event is public and event details are visible to all readers of the calendar"},{"name":"Private","value":"private","description":"The event is private and only event attendees may view event details"}],"default":"default","description":"Visibility of the event"}]},{"displayName":"Reminders","name":"remindersUi","type":"fixedCollection","default":{},"placeholder":"Add Reminder","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["event"],"operation":["update"],"useDefaultReminders":[false]}},"options":[{"name":"remindersValues","displayName":"Reminder","values":[{"displayName":"Method","name":"method","type":"options","options":[{"name":"Email","value":"email"},{"name":"Popup","value":"popup"}],"default":""},{"displayName":"Minutes Before","name":"minutes","type":"number","typeOptions":{"minValue":0,"maxValue":40320},"default":0}]}],"description":"If the event doesn't use the default reminders, this lists the reminders specific to the event"},{"displayName":"This node will use the time zone set in n8n’s settings, but you can override this in the workflow settings","name":"useN8nTimeZone","type":"notice","default":""}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Calendar/googleCalendar.svg"},
|
|
147
|
+
{"displayName":"Google Calendar","name":"n8n-nodes-base.googleCalendar","group":["input"],"version":[1,1.1,1.2],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Google Calendar API","defaults":{"name":"Google Calendar"},"inputs":["main"],"outputs":["main"],"usableAsTool":true,"credentials":[{"name":"googleCalendarOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Calendar","value":"calendar"},{"name":"Event","value":"event"}],"default":"event"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["calendar"]}},"options":[{"name":"Availability","value":"availability","description":"If a time-slot is available in a calendar","action":"Get availability in a calendar"}],"default":"availability"},{"displayName":"Calendar","name":"calendar","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"Google Calendar to operate on","modes":[{"displayName":"Calendar","name":"list","type":"list","placeholder":"Select a Calendar...","typeOptions":{"searchListMethod":"getCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*(?:[ \t]+)*$)","errorMessage":"Not a valid Google Calendar ID"}}],"extractValue":{"type":"regex","regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)"},"placeholder":"name@google.com"}],"displayOptions":{"show":{"resource":["calendar"]}}},{"displayName":"Start Time","name":"timeMin","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["availability"],"resource":["calendar"]}},"default":"","description":"Start of the interval"},{"displayName":"End Time","name":"timeMax","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["availability"],"resource":["calendar"]}},"default":"","description":"End of the interval"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","displayOptions":{"show":{"operation":["availability"],"resource":["calendar"]}},"default":{},"options":[{"displayName":"Output Format","name":"outputFormat","type":"options","options":[{"name":"Availability","value":"availability","description":"Returns if there are any events in the given time or not"},{"name":"Booked Slots","value":"bookedSlots","description":"Returns the booked slots"},{"name":"RAW","value":"raw","description":"Returns the RAW data from the API"}],"default":"availability","description":"The format to return the data in"},{"displayName":"Timezone","name":"timezone","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Time zone used in the response. By default n8n timezone is used.","modes":[{"displayName":"Timezone","name":"list","type":"list","placeholder":"Select a Timezone...","typeOptions":{"searchListMethod":"getTimezones","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmara|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Timbuktu|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/Buenos_Aires|America/Argentina/Catamarca|America/Argentina/ComodRivadavia|America/Argentina/Cordoba|America/Argentina/Jujuy|America/Argentina/La_Rioja|America/Argentina/Mendoza|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Atikokan|America/Atka|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Ensenada|America/Fort_Nelson|America/Fort_Wayne|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Indianapolis|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Louisville|America/Kentucky/Monticello|America/Knox_IN|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montreal|America/Montserrat|America/Nassau|America/New_York|America/Nipigon|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Nuuk|America/Ojinaga|America/Panama|America/Pangnirtung|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Acre|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rainy_River|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Rosario|America/Santa_Isabel|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Shiprock|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Thunder_Bay|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Virgin|America/Whitehorse|America/Winnipeg|America/Yakutat|America/Yellowknife|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/South_Pole|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Ashkhabad|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Choibalsan|Asia/Chongqing|Asia/Chungking|Asia/Colombo|Asia/Dacca|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Harbin|Asia/Hebron|Asia/Ho_Chi_Minh|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Istanbul|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Kashgar|Asia/Kathmandu|Asia/Katmandu|Asia/Khandyga|Asia/Kolkata|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macao|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Tel_Aviv|Asia/Thimbu|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ujung_Pandang|Asia/Ulaanbaatar|Asia/Ulan_Bator|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yangon|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Faroe|Atlantic/Jan_Mayen|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/ACT|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Canberra|Australia/Currie|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/LHI|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/NSW|Australia/North|Australia/Perth|Australia/Queensland|Australia/South|Australia/Sydney|Australia/Tasmania|Australia/Victoria|Australia/West|Australia/Yancowinna|Brazil/Acre|Brazil/DeNoronha|Brazil/East|Brazil/West|CET|CST6CDT|Canada/Atlantic|Canada/Central|Canada/Eastern|Canada/Mountain|Canada/Newfoundland|Canada/Pacific|Canada/Saskatchewan|Canada/Yukon|Chile/Continental|Chile/EasterIsland|Cuba|EET|EST|EST5EDT|Egypt|Eire|Etc/GMT|Etc/GMT\\+0|Etc/GMT\\+1|Etc/GMT\\+10|Etc/GMT\\+11|Etc/GMT\\+12|Etc/GMT\\+2|Etc/GMT\\+3|Etc/GMT\\+4|Etc/GMT\\+5|Etc/GMT\\+6|Etc/GMT\\+7|Etc/GMT\\+8|Etc/GMT\\+9|Etc/GMT-0|Etc/GMT-1|Etc/GMT-10|Etc/GMT-11|Etc/GMT-12|Etc/GMT-13|Etc/GMT-14|Etc/GMT-2|Etc/GMT-3|Etc/GMT-4|Etc/GMT-5|Etc/GMT-6|Etc/GMT-7|Etc/GMT-8|Etc/GMT-9|Etc/GMT0|Etc/Greenwich|Etc/UCT|Etc/UTC|Etc/Universal|Etc/Zulu|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belfast|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Kyiv|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Nicosia|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Tiraspol|Europe/Ulyanovsk|Europe/Uzhgorod|Europe/Vaduz|Europe/Vatican|Europe/Vienna|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zaporozhye|Europe/Zurich|GB|GB-Eire|GMT|GMT\\+0|GMT-0|GMT0|Greenwich|HST|Hongkong|Iceland|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Iran|Israel|Jamaica|Japan|Kwajalein|Libya|MET|MST|MST7MDT|Mexico/BajaNorte|Mexico/BajaSur|Mexico/General|NZ|NZ-CHAT|Navajo|PRC|PST8PDT|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Chuuk|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Johnston|Pacific/Kanton|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Pohnpei|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Samoa|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis|Pacific/Yap|Poland|Portugal|ROC|ROK|Singapore|Turkey|UCT|US/Alaska|US/Aleutian|US/Arizona|US/Central|US/East-Indiana|US/Eastern|US/Hawaii|US/Indiana-Starke|US/Michigan|US/Mountain|US/Pacific|US/Samoa|UTC|Universal|W-SU|WET|Zulu)[ \t]*","errorMessage":"Not a valid Timezone"}}],"extractValue":{"type":"regex","regex":"([-+/_a-zA-Z0-9]*)"},"placeholder":"Europe/Berlin"}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["event"]}},"options":[{"name":"Create","value":"create","description":"Add a event to calendar","action":"Create an event"},{"name":"Delete","value":"delete","description":"Delete an event","action":"Delete an event"},{"name":"Get","value":"get","description":"Retrieve an event","action":"Get an event"},{"name":"Get Many","value":"getAll","description":"Retrieve many events from a calendar","action":"Get many events"},{"name":"Update","value":"update","description":"Update an event","action":"Update an event"}],"default":"create"},{"displayName":"Calendar","name":"calendar","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"Google Calendar to operate on","modes":[{"displayName":"Calendar","name":"list","type":"list","placeholder":"Select a Calendar...","typeOptions":{"searchListMethod":"getCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*(?:[ \t]+)*$)","errorMessage":"Not a valid Google Calendar ID"}}],"extractValue":{"type":"regex","regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)"},"placeholder":"name@google.com"}],"displayOptions":{"show":{"resource":["event"]}}},{"displayName":"Start","name":"start","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"default":"","description":"Start time of the event"},{"displayName":"End","name":"end","type":"dateTime","required":true,"displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"default":"","description":"End time of the event"},{"displayName":"Use Default Reminders","name":"useDefaultReminders","type":"boolean","displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"default":true},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["create"],"resource":["event"]}},"options":[{"displayName":"All Day","name":"allday","type":"options","options":[{"name":"Yes","value":"yes"},{"name":"No","value":"no"}],"default":"no","description":"Whether the event is all day or not"},{"displayName":"Attendees","name":"attendees","type":"string","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Attendee"},"default":"","description":"The attendees of the event. Multiple ones can be separated by comma."},{"displayName":"Color Name or ID","name":"color","type":"options","typeOptions":{"loadOptionsMethod":"getColors"},"default":"","description":"The color of the event. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Conference Data","name":"conferenceDataUi","placeholder":"Add Conference","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{},"options":[{"displayName":"Conference Link","name":"conferenceDataValues","values":[{"displayName":"Type Name or ID","name":"conferenceSolution","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getConferenceSolutions","loadOptionsDependsOn":["calendar"]},"default":""}]}],"description":"Creates a conference link (Hangouts, Meet etc) and attaches it to the event"},{"displayName":"Description","name":"description","type":"string","default":""},{"displayName":"Guests Can Invite Others","name":"guestsCanInviteOthers","type":"boolean","default":true,"description":"Whether attendees other than the organizer can invite others to the event"},{"displayName":"Guests Can Modify","name":"guestsCanModify","type":"boolean","default":false,"description":"Whether attendees other than the organizer can modify the event"},{"displayName":"Guests Can See Other Guests","name":"guestsCanSeeOtherGuests","type":"boolean","default":true,"description":"Whether attendees other than the organizer can see who the event's attendees are"},{"displayName":"ID","name":"id","type":"string","default":"","description":"Opaque identifier of the event"},{"displayName":"Location","name":"location","type":"string","default":"","description":"Geographic location of the event as free-form text"},{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Repeat Frequency","name":"repeatFrecuency","type":"options","options":[{"name":"Daily","value":"Daily"},{"name":"Weekly","value":"weekly"},{"name":"Monthly","value":"monthly"},{"name":"Yearly","value":"yearly"}],"default":""},{"displayName":"Repeat How Many Times?","name":"repeatHowManyTimes","type":"number","typeOptions":{"minValue":1},"default":1},{"displayName":"Repeat Until","name":"repeatUntil","type":"dateTime","default":""},{"displayName":"RRULE","name":"rrule","type":"string","default":"","description":"Recurrence rule. When set, the parameters Repeat Frequency, Repeat How Many Times and Repeat Until are ignored."},{"displayName":"Send Updates","name":"sendUpdates","type":"options","options":[{"name":"All","value":"all","description":"Notifications are sent to all guests"},{"name":"External Only","value":"externalOnly","description":"Notifications are sent to non-Google Calendar guests only"},{"name":"None","value":"none","description":"No notifications are sent. This value should only be used for migration use case."}],"description":"Whether to send notifications about the creation of the new event","default":""},{"displayName":"Show Me As","name":"showMeAs","type":"options","options":[{"name":"Available","value":"transparent","description":"The event does not block time on the calendar"},{"name":"Busy","value":"opaque","description":"The event does block time on the calendar"}],"default":"opaque","description":"Whether the event blocks time on the calendar"},{"displayName":"Summary","name":"summary","type":"string","default":"","description":"Title of the event"},{"displayName":"Visibility","name":"visibility","type":"options","options":[{"name":"Confidential","value":"confidential","description":"The event is private. This value is provided for compatibility reasons."},{"name":"Default","value":"default","description":"Uses the default visibility for events on the calendar"},{"name":"Private","value":"private","description":"The event is private and only event attendees may view event details"},{"name":"Public","value":"public","description":"The event is public and event details are visible to all readers of the calendar"}],"default":"default","description":"Visibility of the event"}]},{"displayName":"Reminders","name":"remindersUi","type":"fixedCollection","default":{},"placeholder":"Add Reminder","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["event"],"operation":["create"],"useDefaultReminders":[false]}},"options":[{"name":"remindersValues","displayName":"Reminder","values":[{"displayName":"Method","name":"method","type":"options","options":[{"name":"Email","value":"email"},{"name":"Popup","value":"popup"}],"default":""},{"displayName":"Minutes Before","name":"minutes","type":"number","typeOptions":{"minValue":0,"maxValue":40320},"default":0}]}],"description":"If the event doesn't use the default reminders, this lists the reminders specific to the event"},{"displayName":"Event ID","name":"eventId","type":"string","required":true,"displayOptions":{"show":{"operation":["delete"],"resource":["event"]}},"default":""},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["delete"],"resource":["event"]}},"options":[{"displayName":"Send Updates","name":"sendUpdates","type":"options","options":[{"name":"All","value":"all","description":"Notifications are sent to all guests"},{"name":"External Only","value":"externalOnly","description":"Notifications are sent to non-Google Calendar guests only"},{"name":"None","value":"none","description":"No notifications are sent. This value should only be used for migration use case."}],"description":"Whether to send notifications about the creation of the new event","default":""}]},{"displayName":"Event ID","name":"eventId","type":"string","required":true,"displayOptions":{"show":{"operation":["get"],"resource":["event"]}},"default":""},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["get"],"resource":["event"]}},"options":[{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Timezone","name":"timeZone","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Time zone used in the response. The default is the time zone of the calendar.","modes":[{"displayName":"Timezone","name":"list","type":"list","placeholder":"Select a Timezone...","typeOptions":{"searchListMethod":"getTimezones","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmara|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Timbuktu|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/Buenos_Aires|America/Argentina/Catamarca|America/Argentina/ComodRivadavia|America/Argentina/Cordoba|America/Argentina/Jujuy|America/Argentina/La_Rioja|America/Argentina/Mendoza|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Atikokan|America/Atka|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Ensenada|America/Fort_Nelson|America/Fort_Wayne|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Indianapolis|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Louisville|America/Kentucky/Monticello|America/Knox_IN|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montreal|America/Montserrat|America/Nassau|America/New_York|America/Nipigon|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Nuuk|America/Ojinaga|America/Panama|America/Pangnirtung|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Acre|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rainy_River|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Rosario|America/Santa_Isabel|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Shiprock|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Thunder_Bay|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Virgin|America/Whitehorse|America/Winnipeg|America/Yakutat|America/Yellowknife|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/South_Pole|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Ashkhabad|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Choibalsan|Asia/Chongqing|Asia/Chungking|Asia/Colombo|Asia/Dacca|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Harbin|Asia/Hebron|Asia/Ho_Chi_Minh|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Istanbul|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Kashgar|Asia/Kathmandu|Asia/Katmandu|Asia/Khandyga|Asia/Kolkata|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macao|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Tel_Aviv|Asia/Thimbu|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ujung_Pandang|Asia/Ulaanbaatar|Asia/Ulan_Bator|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yangon|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Faroe|Atlantic/Jan_Mayen|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/ACT|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Canberra|Australia/Currie|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/LHI|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/NSW|Australia/North|Australia/Perth|Australia/Queensland|Australia/South|Australia/Sydney|Australia/Tasmania|Australia/Victoria|Australia/West|Australia/Yancowinna|Brazil/Acre|Brazil/DeNoronha|Brazil/East|Brazil/West|CET|CST6CDT|Canada/Atlantic|Canada/Central|Canada/Eastern|Canada/Mountain|Canada/Newfoundland|Canada/Pacific|Canada/Saskatchewan|Canada/Yukon|Chile/Continental|Chile/EasterIsland|Cuba|EET|EST|EST5EDT|Egypt|Eire|Etc/GMT|Etc/GMT\\+0|Etc/GMT\\+1|Etc/GMT\\+10|Etc/GMT\\+11|Etc/GMT\\+12|Etc/GMT\\+2|Etc/GMT\\+3|Etc/GMT\\+4|Etc/GMT\\+5|Etc/GMT\\+6|Etc/GMT\\+7|Etc/GMT\\+8|Etc/GMT\\+9|Etc/GMT-0|Etc/GMT-1|Etc/GMT-10|Etc/GMT-11|Etc/GMT-12|Etc/GMT-13|Etc/GMT-14|Etc/GMT-2|Etc/GMT-3|Etc/GMT-4|Etc/GMT-5|Etc/GMT-6|Etc/GMT-7|Etc/GMT-8|Etc/GMT-9|Etc/GMT0|Etc/Greenwich|Etc/UCT|Etc/UTC|Etc/Universal|Etc/Zulu|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belfast|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Kyiv|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Nicosia|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Tiraspol|Europe/Ulyanovsk|Europe/Uzhgorod|Europe/Vaduz|Europe/Vatican|Europe/Vienna|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zaporozhye|Europe/Zurich|GB|GB-Eire|GMT|GMT\\+0|GMT-0|GMT0|Greenwich|HST|Hongkong|Iceland|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Iran|Israel|Jamaica|Japan|Kwajalein|Libya|MET|MST|MST7MDT|Mexico/BajaNorte|Mexico/BajaSur|Mexico/General|NZ|NZ-CHAT|Navajo|PRC|PST8PDT|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Chuuk|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Johnston|Pacific/Kanton|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Pohnpei|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Samoa|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis|Pacific/Yap|Poland|Portugal|ROC|ROK|Singapore|Turkey|UCT|US/Alaska|US/Aleutian|US/Arizona|US/Central|US/East-Indiana|US/Eastern|US/Hawaii|US/Indiana-Starke|US/Michigan|US/Mountain|US/Pacific|US/Samoa|UTC|Universal|W-SU|WET|Zulu)[ \t]*","errorMessage":"Not a valid Timezone"}}],"extractValue":{"type":"regex","regex":"([-+/_a-zA-Z0-9]*)"},"placeholder":"Europe/Berlin"}]}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["event"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["event"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["getAll"],"resource":["event"]}},"options":[{"displayName":"After","name":"timeMin","type":"dateTime","default":"","description":"At least some part of the event must be after this time"},{"displayName":"Before","name":"timeMax","type":"dateTime","default":"","description":"At least some part of the event must be before this time"},{"displayName":"Fields","name":"fields","type":"string","placeholder":"e.g. items(ID,status,summary)","default":"","description":"Specify fields to return, by default a predefined by Google set of commonly used fields would be returned. To return all fields, use '*', <a href='https://developers.google.com/calendar/api/guides/performance#partial' target='_blank'>more info</a>."},{"displayName":"iCalUID","name":"iCalUID","type":"string","default":"","description":"Specifies event ID in the iCalendar format to be included in the response"},{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Order By","name":"orderBy","type":"options","options":[{"name":"Start Time","value":"startTime","description":"Order by the start date/time (ascending). This is only available when querying single events (i.e. the parameter singleEvents is True)."},{"name":"Updated","value":"updated","description":"Order by last modification time (ascending)"}],"default":"","description":"The order of the events returned in the result"},{"displayName":"Query","name":"query","type":"string","default":"","description":"Free text search terms to find events that match these terms in any field, except for extended properties"},{"displayName":"Show Deleted","name":"showDeleted","type":"boolean","default":false,"description":"Whether to include deleted events (with status equals \"cancelled\") in the result"},{"displayName":"Show Hidden Invitations","name":"showHiddenInvitations","type":"boolean","default":false,"description":"Whether to include hidden invitations in the result"},{"displayName":"Single Events","name":"singleEvents","type":"boolean","default":false,"description":"Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves"},{"displayName":"Timezone","name":"timeZone","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Time zone used in the response. The default is the time zone of the calendar.","modes":[{"displayName":"Timezone","name":"list","type":"list","placeholder":"Select a Timezone...","typeOptions":{"searchListMethod":"getTimezones","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(Africa/Abidjan|Africa/Accra|Africa/Addis_Ababa|Africa/Algiers|Africa/Asmara|Africa/Asmera|Africa/Bamako|Africa/Bangui|Africa/Banjul|Africa/Bissau|Africa/Blantyre|Africa/Brazzaville|Africa/Bujumbura|Africa/Cairo|Africa/Casablanca|Africa/Ceuta|Africa/Conakry|Africa/Dakar|Africa/Dar_es_Salaam|Africa/Djibouti|Africa/Douala|Africa/El_Aaiun|Africa/Freetown|Africa/Gaborone|Africa/Harare|Africa/Johannesburg|Africa/Juba|Africa/Kampala|Africa/Khartoum|Africa/Kigali|Africa/Kinshasa|Africa/Lagos|Africa/Libreville|Africa/Lome|Africa/Luanda|Africa/Lubumbashi|Africa/Lusaka|Africa/Malabo|Africa/Maputo|Africa/Maseru|Africa/Mbabane|Africa/Mogadishu|Africa/Monrovia|Africa/Nairobi|Africa/Ndjamena|Africa/Niamey|Africa/Nouakchott|Africa/Ouagadougou|Africa/Porto-Novo|Africa/Sao_Tome|Africa/Timbuktu|Africa/Tripoli|Africa/Tunis|Africa/Windhoek|America/Adak|America/Anchorage|America/Anguilla|America/Antigua|America/Araguaina|America/Argentina/Buenos_Aires|America/Argentina/Catamarca|America/Argentina/ComodRivadavia|America/Argentina/Cordoba|America/Argentina/Jujuy|America/Argentina/La_Rioja|America/Argentina/Mendoza|America/Argentina/Rio_Gallegos|America/Argentina/Salta|America/Argentina/San_Juan|America/Argentina/San_Luis|America/Argentina/Tucuman|America/Argentina/Ushuaia|America/Aruba|America/Asuncion|America/Atikokan|America/Atka|America/Bahia|America/Bahia_Banderas|America/Barbados|America/Belem|America/Belize|America/Blanc-Sablon|America/Boa_Vista|America/Bogota|America/Boise|America/Buenos_Aires|America/Cambridge_Bay|America/Campo_Grande|America/Cancun|America/Caracas|America/Catamarca|America/Cayenne|America/Cayman|America/Chicago|America/Chihuahua|America/Coral_Harbour|America/Cordoba|America/Costa_Rica|America/Creston|America/Cuiaba|America/Curacao|America/Danmarkshavn|America/Dawson|America/Dawson_Creek|America/Denver|America/Detroit|America/Dominica|America/Edmonton|America/Eirunepe|America/El_Salvador|America/Ensenada|America/Fort_Nelson|America/Fort_Wayne|America/Fortaleza|America/Glace_Bay|America/Godthab|America/Goose_Bay|America/Grand_Turk|America/Grenada|America/Guadeloupe|America/Guatemala|America/Guayaquil|America/Guyana|America/Halifax|America/Havana|America/Hermosillo|America/Indiana/Indianapolis|America/Indiana/Knox|America/Indiana/Marengo|America/Indiana/Petersburg|America/Indiana/Tell_City|America/Indiana/Vevay|America/Indiana/Vincennes|America/Indiana/Winamac|America/Indianapolis|America/Inuvik|America/Iqaluit|America/Jamaica|America/Jujuy|America/Juneau|America/Kentucky/Louisville|America/Kentucky/Monticello|America/Knox_IN|America/Kralendijk|America/La_Paz|America/Lima|America/Los_Angeles|America/Louisville|America/Lower_Princes|America/Maceio|America/Managua|America/Manaus|America/Marigot|America/Martinique|America/Matamoros|America/Mazatlan|America/Mendoza|America/Menominee|America/Merida|America/Metlakatla|America/Mexico_City|America/Miquelon|America/Moncton|America/Monterrey|America/Montevideo|America/Montreal|America/Montserrat|America/Nassau|America/New_York|America/Nipigon|America/Nome|America/Noronha|America/North_Dakota/Beulah|America/North_Dakota/Center|America/North_Dakota/New_Salem|America/Nuuk|America/Ojinaga|America/Panama|America/Pangnirtung|America/Paramaribo|America/Phoenix|America/Port-au-Prince|America/Port_of_Spain|America/Porto_Acre|America/Porto_Velho|America/Puerto_Rico|America/Punta_Arenas|America/Rainy_River|America/Rankin_Inlet|America/Recife|America/Regina|America/Resolute|America/Rio_Branco|America/Rosario|America/Santa_Isabel|America/Santarem|America/Santiago|America/Santo_Domingo|America/Sao_Paulo|America/Scoresbysund|America/Shiprock|America/Sitka|America/St_Barthelemy|America/St_Johns|America/St_Kitts|America/St_Lucia|America/St_Thomas|America/St_Vincent|America/Swift_Current|America/Tegucigalpa|America/Thule|America/Thunder_Bay|America/Tijuana|America/Toronto|America/Tortola|America/Vancouver|America/Virgin|America/Whitehorse|America/Winnipeg|America/Yakutat|America/Yellowknife|Antarctica/Casey|Antarctica/Davis|Antarctica/DumontDUrville|Antarctica/Macquarie|Antarctica/Mawson|Antarctica/McMurdo|Antarctica/Palmer|Antarctica/Rothera|Antarctica/South_Pole|Antarctica/Syowa|Antarctica/Troll|Antarctica/Vostok|Arctic/Longyearbyen|Asia/Aden|Asia/Almaty|Asia/Amman|Asia/Anadyr|Asia/Aqtau|Asia/Aqtobe|Asia/Ashgabat|Asia/Ashkhabad|Asia/Atyrau|Asia/Baghdad|Asia/Bahrain|Asia/Baku|Asia/Bangkok|Asia/Barnaul|Asia/Beirut|Asia/Bishkek|Asia/Brunei|Asia/Calcutta|Asia/Chita|Asia/Choibalsan|Asia/Chongqing|Asia/Chungking|Asia/Colombo|Asia/Dacca|Asia/Damascus|Asia/Dhaka|Asia/Dili|Asia/Dubai|Asia/Dushanbe|Asia/Famagusta|Asia/Gaza|Asia/Harbin|Asia/Hebron|Asia/Ho_Chi_Minh|Asia/Hong_Kong|Asia/Hovd|Asia/Irkutsk|Asia/Istanbul|Asia/Jakarta|Asia/Jayapura|Asia/Jerusalem|Asia/Kabul|Asia/Kamchatka|Asia/Karachi|Asia/Kashgar|Asia/Kathmandu|Asia/Katmandu|Asia/Khandyga|Asia/Kolkata|Asia/Krasnoyarsk|Asia/Kuala_Lumpur|Asia/Kuching|Asia/Kuwait|Asia/Macao|Asia/Macau|Asia/Magadan|Asia/Makassar|Asia/Manila|Asia/Muscat|Asia/Nicosia|Asia/Novokuznetsk|Asia/Novosibirsk|Asia/Omsk|Asia/Oral|Asia/Phnom_Penh|Asia/Pontianak|Asia/Pyongyang|Asia/Qatar|Asia/Qostanay|Asia/Qyzylorda|Asia/Rangoon|Asia/Riyadh|Asia/Saigon|Asia/Sakhalin|Asia/Samarkand|Asia/Seoul|Asia/Shanghai|Asia/Singapore|Asia/Srednekolymsk|Asia/Taipei|Asia/Tashkent|Asia/Tbilisi|Asia/Tehran|Asia/Tel_Aviv|Asia/Thimbu|Asia/Thimphu|Asia/Tokyo|Asia/Tomsk|Asia/Ujung_Pandang|Asia/Ulaanbaatar|Asia/Ulan_Bator|Asia/Urumqi|Asia/Ust-Nera|Asia/Vientiane|Asia/Vladivostok|Asia/Yakutsk|Asia/Yangon|Asia/Yekaterinburg|Asia/Yerevan|Atlantic/Azores|Atlantic/Bermuda|Atlantic/Canary|Atlantic/Cape_Verde|Atlantic/Faeroe|Atlantic/Faroe|Atlantic/Jan_Mayen|Atlantic/Madeira|Atlantic/Reykjavik|Atlantic/South_Georgia|Atlantic/St_Helena|Atlantic/Stanley|Australia/ACT|Australia/Adelaide|Australia/Brisbane|Australia/Broken_Hill|Australia/Canberra|Australia/Currie|Australia/Darwin|Australia/Eucla|Australia/Hobart|Australia/LHI|Australia/Lindeman|Australia/Lord_Howe|Australia/Melbourne|Australia/NSW|Australia/North|Australia/Perth|Australia/Queensland|Australia/South|Australia/Sydney|Australia/Tasmania|Australia/Victoria|Australia/West|Australia/Yancowinna|Brazil/Acre|Brazil/DeNoronha|Brazil/East|Brazil/West|CET|CST6CDT|Canada/Atlantic|Canada/Central|Canada/Eastern|Canada/Mountain|Canada/Newfoundland|Canada/Pacific|Canada/Saskatchewan|Canada/Yukon|Chile/Continental|Chile/EasterIsland|Cuba|EET|EST|EST5EDT|Egypt|Eire|Etc/GMT|Etc/GMT\\+0|Etc/GMT\\+1|Etc/GMT\\+10|Etc/GMT\\+11|Etc/GMT\\+12|Etc/GMT\\+2|Etc/GMT\\+3|Etc/GMT\\+4|Etc/GMT\\+5|Etc/GMT\\+6|Etc/GMT\\+7|Etc/GMT\\+8|Etc/GMT\\+9|Etc/GMT-0|Etc/GMT-1|Etc/GMT-10|Etc/GMT-11|Etc/GMT-12|Etc/GMT-13|Etc/GMT-14|Etc/GMT-2|Etc/GMT-3|Etc/GMT-4|Etc/GMT-5|Etc/GMT-6|Etc/GMT-7|Etc/GMT-8|Etc/GMT-9|Etc/GMT0|Etc/Greenwich|Etc/UCT|Etc/UTC|Etc/Universal|Etc/Zulu|Europe/Amsterdam|Europe/Andorra|Europe/Astrakhan|Europe/Athens|Europe/Belfast|Europe/Belgrade|Europe/Berlin|Europe/Bratislava|Europe/Brussels|Europe/Bucharest|Europe/Budapest|Europe/Busingen|Europe/Chisinau|Europe/Copenhagen|Europe/Dublin|Europe/Gibraltar|Europe/Guernsey|Europe/Helsinki|Europe/Isle_of_Man|Europe/Istanbul|Europe/Jersey|Europe/Kaliningrad|Europe/Kiev|Europe/Kirov|Europe/Kyiv|Europe/Lisbon|Europe/Ljubljana|Europe/London|Europe/Luxembourg|Europe/Madrid|Europe/Malta|Europe/Mariehamn|Europe/Minsk|Europe/Monaco|Europe/Moscow|Europe/Nicosia|Europe/Oslo|Europe/Paris|Europe/Podgorica|Europe/Prague|Europe/Riga|Europe/Rome|Europe/Samara|Europe/San_Marino|Europe/Sarajevo|Europe/Saratov|Europe/Simferopol|Europe/Skopje|Europe/Sofia|Europe/Stockholm|Europe/Tallinn|Europe/Tirane|Europe/Tiraspol|Europe/Ulyanovsk|Europe/Uzhgorod|Europe/Vaduz|Europe/Vatican|Europe/Vienna|Europe/Vilnius|Europe/Volgograd|Europe/Warsaw|Europe/Zagreb|Europe/Zaporozhye|Europe/Zurich|GB|GB-Eire|GMT|GMT\\+0|GMT-0|GMT0|Greenwich|HST|Hongkong|Iceland|Indian/Antananarivo|Indian/Chagos|Indian/Christmas|Indian/Cocos|Indian/Comoro|Indian/Kerguelen|Indian/Mahe|Indian/Maldives|Indian/Mauritius|Indian/Mayotte|Indian/Reunion|Iran|Israel|Jamaica|Japan|Kwajalein|Libya|MET|MST|MST7MDT|Mexico/BajaNorte|Mexico/BajaSur|Mexico/General|NZ|NZ-CHAT|Navajo|PRC|PST8PDT|Pacific/Apia|Pacific/Auckland|Pacific/Bougainville|Pacific/Chatham|Pacific/Chuuk|Pacific/Easter|Pacific/Efate|Pacific/Enderbury|Pacific/Fakaofo|Pacific/Fiji|Pacific/Funafuti|Pacific/Galapagos|Pacific/Gambier|Pacific/Guadalcanal|Pacific/Guam|Pacific/Honolulu|Pacific/Johnston|Pacific/Kanton|Pacific/Kiritimati|Pacific/Kosrae|Pacific/Kwajalein|Pacific/Majuro|Pacific/Marquesas|Pacific/Midway|Pacific/Nauru|Pacific/Niue|Pacific/Norfolk|Pacific/Noumea|Pacific/Pago_Pago|Pacific/Palau|Pacific/Pitcairn|Pacific/Pohnpei|Pacific/Ponape|Pacific/Port_Moresby|Pacific/Rarotonga|Pacific/Saipan|Pacific/Samoa|Pacific/Tahiti|Pacific/Tarawa|Pacific/Tongatapu|Pacific/Truk|Pacific/Wake|Pacific/Wallis|Pacific/Yap|Poland|Portugal|ROC|ROK|Singapore|Turkey|UCT|US/Alaska|US/Aleutian|US/Arizona|US/Central|US/East-Indiana|US/Eastern|US/Hawaii|US/Indiana-Starke|US/Michigan|US/Mountain|US/Pacific|US/Samoa|UTC|Universal|W-SU|WET|Zulu)[ \t]*","errorMessage":"Not a valid Timezone"}}],"extractValue":{"type":"regex","regex":"([-+/_a-zA-Z0-9]*)"},"placeholder":"Europe/Berlin"}]},{"displayName":"Updated Min","name":"updatedMin","type":"dateTime","default":"","description":"Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted."}]},{"displayName":"Event ID","name":"eventId","type":"string","required":true,"displayOptions":{"show":{"operation":["update"],"resource":["event"]}},"default":""},{"displayName":"Use Default Reminders","name":"useDefaultReminders","type":"boolean","displayOptions":{"show":{"operation":["update"],"resource":["event"]}},"default":true},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["update"],"resource":["event"]}},"options":[{"displayName":"All Day","name":"allday","type":"options","options":[{"name":"Yes","value":"yes"},{"name":"No","value":"no"}],"default":"no","description":"Whether the event is all day or not"},{"displayName":"Attendees","name":"attendeesUi","type":"fixedCollection","placeholder":"Add Attendees","default":{"values":{"mode":"add","attendees":[]}},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Mode","name":"mode","type":"options","default":"add","options":[{"name":"Add Attendees Below [Default]","value":"add"},{"name":"Replace Attendees with Those Below","value":"replace"}]},{"displayName":"Attendees","name":"attendees","type":"string","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Attendee"},"default":"","description":"The attendees of the event. Multiple ones can be separated by comma."}]}],"displayOptions":{"show":{"@version":[{"_cnd":{"gte":1.2}}]}}},{"displayName":"Attendees","name":"attendees","type":"string","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Attendee"},"default":"","description":"The attendees of the event. Multiple ones can be separated by comma.","displayOptions":{"show":{"@version":[1,1.1]}}},{"displayName":"Color Name or ID","name":"color","type":"options","typeOptions":{"loadOptionsMethod":"getColors"},"default":"","description":"The color of the event. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Description","name":"description","type":"string","default":""},{"displayName":"End","name":"end","type":"dateTime","default":"","description":"End time of the event"},{"displayName":"Guests Can Invite Others","name":"guestsCanInviteOthers","type":"boolean","default":true,"description":"Whether attendees other than the organizer can invite others to the event"},{"displayName":"Guests Can Modify","name":"guestsCanModify","type":"boolean","default":false,"description":"Whether attendees other than the organizer can modify the event"},{"displayName":"Guests Can See Other Guests","name":"guestsCanSeeOtherGuests","type":"boolean","default":true,"description":"Whether attendees other than the organizer can see who the event's attendees are"},{"displayName":"ID","name":"id","type":"string","default":"","description":"Opaque identifier of the event"},{"displayName":"Location","name":"location","type":"string","default":"","description":"Geographic location of the event as free-form text"},{"displayName":"Max Attendees","name":"maxAttendees","type":"number","default":0,"description":"The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned."},{"displayName":"Repeat Frequency","name":"repeatFrecuency","type":"options","options":[{"name":"Daily","value":"Daily"},{"name":"Weekly","value":"weekly"},{"name":"Monthly","value":"monthly"},{"name":"Yearly","value":"yearly"}],"default":""},{"displayName":"Repeat How Many Times?","name":"repeatHowManyTimes","type":"number","typeOptions":{"minValue":1},"default":1},{"displayName":"Repeat Until","name":"repeatUntil","type":"dateTime","default":""},{"displayName":"RRULE","name":"rrule","type":"string","default":"","description":"Recurrence rule. When set, the parameters Repeat Frequency, Repeat How Many Times and Repeat Until are ignored."},{"displayName":"Send Updates","name":"sendUpdates","type":"options","options":[{"name":"All","value":"all","description":"Notifications are sent to all guests"},{"name":"External Only","value":"externalOnly","description":"Notifications are sent to non-Google Calendar guests only"},{"name":"None","value":"none","description":"No notifications are sent. This value should only be used for migration use case."}],"description":"Whether to send notifications about the creation of the new event","default":""},{"displayName":"Show Me As","name":"showMeAs","type":"options","options":[{"name":"Available","value":"transparent","description":"The event does not block time on the calendar"},{"name":"Busy","value":"opaque","description":"The event does block time on the calendar"}],"default":"opaque","description":"Whether the event blocks time on the calendar"},{"displayName":"Start","name":"start","type":"dateTime","default":"","description":"Start time of the event"},{"displayName":"Summary","name":"summary","type":"string","default":"","description":"Title of the event"},{"displayName":"Visibility","name":"visibility","type":"options","options":[{"name":"Confidential","value":"confidential","description":"The event is private. This value is provided for compatibility reasons."},{"name":"Default","value":"default","description":"Uses the default visibility for events on the calendar"},{"name":"Public","value":"public","description":"The event is public and event details are visible to all readers of the calendar"},{"name":"Private","value":"private","description":"The event is private and only event attendees may view event details"}],"default":"default","description":"Visibility of the event"}]},{"displayName":"Reminders","name":"remindersUi","type":"fixedCollection","default":{},"placeholder":"Add Reminder","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["event"],"operation":["update"],"useDefaultReminders":[false]}},"options":[{"name":"remindersValues","displayName":"Reminder","values":[{"displayName":"Method","name":"method","type":"options","options":[{"name":"Email","value":"email"},{"name":"Popup","value":"popup"}],"default":""},{"displayName":"Minutes Before","name":"minutes","type":"number","typeOptions":{"minValue":0,"maxValue":40320},"default":0}]}],"description":"If the event doesn't use the default reminders, this lists the reminders specific to the event"},{"displayName":"This node will use the time zone set in n8n’s settings, but you can override this in the workflow settings","name":"useN8nTimeZone","type":"notice","default":""}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlecalendar/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Calendar/googleCalendar.svg"},
|
|
147
148
|
{"displayName":"Google Calendar Trigger","name":"n8n-nodes-base.googleCalendarTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"triggerOn\"]}}","description":"Starts the workflow when Google Calendar events occur","defaults":{"name":"Google Calendar Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"googleCalendarOAuth2Api","required":true}],"polling":true,"properties":[{"displayName":"Poll Times","name":"pollTimes","type":"fixedCollection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Poll Time"},"default":{"item":[{"mode":"everyMinute"}]},"description":"Time at which polling should occur","placeholder":"Add Poll Time","options":[{"name":"item","displayName":"Item","values":[{"displayName":"Mode","name":"mode","type":"options","options":[{"name":"Every Minute","value":"everyMinute"},{"name":"Every Hour","value":"everyHour"},{"name":"Every Day","value":"everyDay"},{"name":"Every Week","value":"everyWeek"},{"name":"Every Month","value":"everyMonth"},{"name":"Every X","value":"everyX"},{"name":"Custom","value":"custom"}],"default":"everyDay","description":"How often to trigger."},{"displayName":"Hour","name":"hour","type":"number","typeOptions":{"minValue":0,"maxValue":23},"displayOptions":{"hide":{"mode":["custom","everyHour","everyMinute","everyX"]}},"default":14,"description":"The hour of the day to trigger (24h format)"},{"displayName":"Minute","name":"minute","type":"number","typeOptions":{"minValue":0,"maxValue":59},"displayOptions":{"hide":{"mode":["custom","everyMinute","everyX"]}},"default":0,"description":"The minute of the day to trigger"},{"displayName":"Day of Month","name":"dayOfMonth","type":"number","displayOptions":{"show":{"mode":["everyMonth"]}},"typeOptions":{"minValue":1,"maxValue":31},"default":1,"description":"The day of the month to trigger"},{"displayName":"Weekday","name":"weekday","type":"options","displayOptions":{"show":{"mode":["everyWeek"]}},"options":[{"name":"Monday","value":"1"},{"name":"Tuesday","value":"2"},{"name":"Wednesday","value":"3"},{"name":"Thursday","value":"4"},{"name":"Friday","value":"5"},{"name":"Saturday","value":"6"},{"name":"Sunday","value":"0"}],"default":"1","description":"The weekday to trigger"},{"displayName":"Cron Expression","name":"cronExpression","type":"string","displayOptions":{"show":{"mode":["custom"]}},"default":"* * * * * *","description":"Use custom cron expression. Values and ranges as follows:<ul><li>Seconds: 0-59</li><li>Minutes: 0 - 59</li><li>Hours: 0 - 23</li><li>Day of Month: 1 - 31</li><li>Months: 0 - 11 (Jan - Dec)</li><li>Day of Week: 0 - 6 (Sun - Sat)</li></ul>"},{"displayName":"Value","name":"value","type":"number","typeOptions":{"minValue":0,"maxValue":1000},"displayOptions":{"show":{"mode":["everyX"]}},"default":2,"description":"All how many X minutes/hours it should trigger"},{"displayName":"Unit","name":"unit","type":"options","displayOptions":{"show":{"mode":["everyX"]}},"options":[{"name":"Minutes","value":"minutes"},{"name":"Hours","value":"hours"}],"default":"hours","description":"If it should trigger all X minutes or hours"}]}]},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"description":"Google Calendar to operate on","modes":[{"displayName":"Calendar","name":"list","type":"list","placeholder":"Select a Calendar...","typeOptions":{"searchListMethod":"getCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*(?:[ \t]+)*$)","errorMessage":"Not a valid Google Calendar ID"}}],"extractValue":{"type":"regex","regex":"(^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\\.[a-zA-Z0-9-]+)*)"},"placeholder":"name@google.com"}]},{"displayName":"Trigger On","name":"triggerOn","type":"options","required":true,"default":"","options":[{"name":"Event Cancelled","value":"eventCancelled"},{"name":"Event Created","value":"eventCreated"},{"name":"Event Ended","value":"eventEnded"},{"name":"Event Started","value":"eventStarted"},{"name":"Event Updated","value":"eventUpdated"}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Match Term","name":"matchTerm","type":"string","default":"","description":"Free text search terms to filter events that match these terms in any field, except for extended properties"}]}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.googlecalendartrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Calendar/googleCalendar.svg"},
|
|
148
149
|
{"displayName":"Google Chat","name":"n8n-nodes-base.googleChat","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Google Chat API","defaults":{"name":"Google Chat"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleApi","required":true,"testedBy":"testGoogleTokenAuth"}],"properties":[{"displayName":"Resource","name":"resource","required":true,"noDataExpression":true,"type":"options","options":[{"name":"Member","value":"member"},{"name":"Message","value":"message"},{"name":"Space","value":"space"}],"default":"message"},{"displayName":"Operation","name":"operation","noDataExpression":true,"type":"options","displayOptions":{"show":{"resource":["member"]}},"options":[{"name":"Get","value":"get","description":"Get a membership","action":"Get a member"},{"name":"Get Many","value":"getAll","description":"Get many memberships in a space","action":"Get many members"}],"default":"get"},{"displayName":"Member ID","name":"memberId","type":"string","required":true,"displayOptions":{"show":{"resource":["member"],"operation":["get"]}},"default":"","description":"Member to be retrieved in the form \"spaces/*/members/*\""},{"displayName":"Space Name or ID","name":"spaceId","type":"options","required":true,"typeOptions":{"loadOptionsMethod":"getSpaces"},"displayOptions":{"show":{"resource":["member"],"operation":["getAll"]}},"default":[],"description":"The name of the space for which to retrieve members, in the form \"spaces/*\". Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["member"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","typeOptions":{"maxValue":1000},"displayOptions":{"show":{"resource":["member"],"operation":["getAll"],"returnAll":[false]}},"default":100,"description":"Max number of results to return"},{"displayName":"Operation","name":"operation","noDataExpression":true,"type":"options","displayOptions":{"show":{"resource":["message"]}},"options":[{"name":"Create","value":"create","description":"Create a message","action":"Create a message"},{"name":"Delete","value":"delete","description":"Delete a message","action":"Delete a message"},{"name":"Get","value":"get","description":"Get a message","action":"Get a message"},{"name":"Update","value":"update","description":"Update a message","action":"Update a message"}],"default":"create"},{"displayName":"Space Name or ID","name":"spaceId","type":"options","required":true,"typeOptions":{"loadOptionsMethod":"getSpaces"},"displayOptions":{"show":{"resource":["message"],"operation":["create"]}},"default":"","description":"Space resource name, in the form \"spaces/*\". Example: spaces/AAAAMpdlehY. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"JSON Parameters","name":"jsonParameters","type":"boolean","displayOptions":{"show":{"resource":["message"],"operation":["create"]}},"default":false,"description":"Whether to pass the message object as JSON"},{"displayName":"Message","name":"messageUi","type":"collection","required":true,"placeholder":"Add Message","displayOptions":{"show":{"resource":["message"],"operation":["create"],"jsonParameters":[false]}},"default":{},"options":[{"displayName":"Text","name":"text","type":"string","default":""}]},{"displayName":"See <a href=\"https://developers.google.com/chat/reference/rest/v1/spaces.messages#Message\" target=\"_blank\">Google Chat Guide</a> To Creating Messages","name":"jsonNotice","type":"notice","displayOptions":{"show":{"resource":["message"],"operation":["create"],"jsonParameters":[true]}},"default":""},{"displayName":"Message (JSON)","name":"messageJson","type":"json","required":true,"typeOptions":{"alwaysOpenEditWindow":true},"displayOptions":{"show":{"resource":["message"],"operation":["create"],"jsonParameters":[true]}},"default":"","description":"Message input as JSON Object or JSON String"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["message"],"operation":["create"]}},"options":[{"displayName":"Request ID","name":"requestId","type":"string","default":"","description":"A unique request ID for this message. If a message has already been created in the space with this request ID, the subsequent request will return the existing message and no new message will be created."}]},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"displayOptions":{"show":{"resource":["message"],"operation":["delete"]}},"default":"","description":"Resource name of the message to be deleted, in the form \"spaces//messages/\""},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"displayOptions":{"show":{"resource":["message"],"operation":["get"]}},"default":"","description":"Resource name of the message to be retrieved, in the form \"spaces//messages/\""},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"displayOptions":{"show":{"resource":["message"],"operation":["update"]}},"default":"","description":"Resource name of the message to be updated, in the form \"spaces//messages/\""},{"displayName":"JSON Parameters","name":"jsonParameters","type":"boolean","displayOptions":{"show":{"resource":["message"],"operation":["update"]}},"default":false,"description":"Whether to pass the update fields object as JSON"},{"displayName":"Update Fields","name":"updateFieldsUi","type":"collection","required":true,"placeholder":"Add option","displayOptions":{"show":{"resource":["message"],"operation":["update"],"jsonParameters":[false]}},"default":{},"options":[{"displayName":"Text","name":"text","type":"string","default":""}]},{"displayName":"See <a href=\"https://developers.google.com/chat/reference/rest/v1/spaces.messages#Message\" target=\"_blank\">Google Chat Guide</a> To Creating Messages","name":"jsonNotice","type":"notice","displayOptions":{"show":{"resource":["message"],"operation":["update"],"jsonParameters":[true]}},"default":""},{"displayName":"Update Fields (JSON)","name":"updateFieldsJson","type":"json","required":true,"typeOptions":{"alwaysOpenEditWindow":true},"displayOptions":{"show":{"resource":["message"],"operation":["update"],"jsonParameters":[true]}},"default":"","description":"Message input as JSON Object or JSON String"},{"displayName":"Operation","name":"operation","noDataExpression":true,"type":"options","displayOptions":{"show":{"resource":["space"]}},"options":[{"name":"Get","value":"get","description":"Get a space","action":"Get a space"},{"name":"Get Many","value":"getAll","description":"Get many spaces the caller is a member of","action":"Get many spaces"}],"default":"get"},{"displayName":"Space ID","name":"spaceId","type":"string","required":true,"displayOptions":{"show":{"resource":["space"],"operation":["get"]}},"default":"","description":"Resource name of the space, in the form \"spaces/*\""},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["space"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","typeOptions":{"maxValue":1000},"displayOptions":{"show":{"resource":["space"],"operation":["getAll"],"returnAll":[false]}},"default":100,"description":"Max number of results to return"}],"codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlechat/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/service-account/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/Chat/googleChat.svg"},
|
|
149
150
|
{"displayName":"Google Cloud Natural Language","name":"n8n-nodes-base.googleCloudNaturalLanguage","group":["input","output"],"version":1,"description":"Consume Google Cloud Natural Language API","subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","defaults":{"name":"Google Cloud Natural Language"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"googleCloudNaturalLanguageOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Document","value":"document"}],"default":"document"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["document"]}},"options":[{"name":"Analyze Sentiment","value":"analyzeSentiment","action":"Analyze sentiment"}],"default":"analyzeSentiment"},{"displayName":"Source","name":"source","type":"options","options":[{"name":"Content","value":"content"},{"name":"Google Cloud Storage URI","value":"gcsContentUri"}],"default":"content","description":"The source of the document: a string containing the content or a Google Cloud Storage URI","required":true,"displayOptions":{"show":{"operation":["analyzeSentiment"]}}},{"displayName":"Content","name":"content","type":"string","default":"","description":"The content of the input in string format. Cloud audit logging exempt since it is based on user data.","required":true,"displayOptions":{"show":{"operation":["analyzeSentiment"],"source":["content"]}}},{"displayName":"Google Cloud Storage URI","name":"gcsContentUri","type":"string","default":"","description":"The Google Cloud Storage URI where the file content is located. This URI must be of the form: <code>gs://bucket_name/object_name</code>. For more details, see <a href=\"https://cloud.google.com/storage/docs/reference-uris.\">reference</a>.","required":true,"displayOptions":{"show":{"operation":["analyzeSentiment"],"source":["gcsContentUri"]}}},{"displayName":"Options","name":"options","type":"collection","displayOptions":{"show":{"operation":["analyzeSentiment"]}},"default":{},"placeholder":"Add option","options":[{"displayName":"Document Type","name":"documentType","type":"options","options":[{"name":"HTML","value":"HTML"},{"name":"Plain Text","value":"PLAIN_TEXT"}],"default":"PLAIN_TEXT","description":"The type of input document"},{"displayName":"Encoding Type","name":"encodingType","type":"options","options":[{"name":"None","value":"NONE"},{"name":"UTF-8","value":"UTF8"},{"name":"UTF-16","value":"UTF16"},{"name":"UTF-32","value":"UTF32"}],"default":"UTF16","description":"The encoding type used by the API to calculate sentence offsets"},{"displayName":"Language","name":"language","type":"options","options":[{"name":"Arabic","value":"ar"},{"name":"Chinese (Simplified)","value":"zh"},{"name":"Chinese (Traditional)","value":"zh-Hant"},{"name":"Dutch","value":"nl"},{"name":"English","value":"en"},{"name":"French","value":"fr"},{"name":"German","value":"de"},{"name":"Indonesian","value":"id"},{"name":"Italian","value":"it"},{"name":"Japanese","value":"ja"},{"name":"Korean","value":"ko"},{"name":"Portuguese (Brazilian & Continental)","value":"pt"},{"name":"Spanish","value":"es"},{"name":"Thai","value":"th"},{"name":"Turkish","value":"tr"},{"name":"Vietnamese","value":"vi"}],"default":"en","placeholder":"","description":"The language of the document (if not specified, the language is automatically detected). Both ISO and BCP-47 language codes are accepted."}]}],"codex":{"categories":["Analytics"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlecloudnaturallanguage/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Google/CloudNaturalLanguage/googlecloudnaturallanguage.png"},
|
|
@@ -218,7 +219,7 @@
|
|
|
218
219
|
{"displayName":"Lemlist","name":"n8n-nodes-base.lemlist","group":["transform"],"defaultVersion":2,"description":"Consume the Lemlist API","version":2,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","defaults":{"name":"Lemlist"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"lemlistApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Activity","value":"activity"},{"name":"Campaign","value":"campaign"},{"name":"Enrichment","value":"enrich"},{"name":"Lead","value":"lead"},{"name":"Team","value":"team"},{"name":"Unsubscribe","value":"unsubscribe"}],"default":"activity"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"getAll","options":[{"name":"Get Many","value":"getAll","action":"Get many activities"}],"displayOptions":{"show":{"resource":["activity"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["activity"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":5,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["activity"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"resource":["activity"],"operation":["getAll"]}},"options":[{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","default":"","typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to retrieve activity for. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Is First","name":"isFirst","type":"boolean","default":false},{"displayName":"Lead ID","name":"leadId","type":"string","default":""},{"displayName":"Type","name":"type","type":"options","default":"emailsOpened","description":"Type of activity to retrieve","options":[{"name":"Aircall Created","value":"aircallCreated"},{"name":"Aircall Done","value":"aircallDone"},{"name":"Aircall Ended","value":"aircallEnded"},{"name":"Aircall Interested","value":"aircallInterested"},{"name":"Aircall Not Interested","value":"aircallNotInterested"},{"name":"Api Done","value":"apiDone"},{"name":"Api Failed","value":"apiFailed"},{"name":"Api Interested","value":"apiInterested"},{"name":"Api Not Interested","value":"apiNotInterested"},{"name":"Attracted","value":"attracted"},{"name":"Connection Issue","value":"connectionIssue"},{"name":"Contacted","value":"contacted"},{"name":"Custom Domain Errors","value":"customDomainErrors"},{"name":"Emails Bounced","value":"emailsBounced"},{"name":"Emails Clicked","value":"emailsClicked"},{"name":"Emails Failed","value":"emailsFailed"},{"name":"Emails Interested","value":"emailsInterested"},{"name":"Emails Not Interested","value":"emailsNotInterested"},{"name":"Emails Opened","value":"emailsOpened"},{"name":"Emails Replied","value":"emailsReplied"},{"name":"Emails Send Failed","value":"emailsSendFailed"},{"name":"Emails Sent","value":"emailsSent"},{"name":"Emails Unsubscribed","value":"emailsUnsubscribed"},{"name":"Hooked","value":"hooked"},{"name":"Interested","value":"interested"},{"name":"Lemwarm Paused","value":"lemwarmPaused"},{"name":"LinkedIn Interested","value":"linkedinInterested"},{"name":"LinkedIn Invite Accepted","value":"linkedinInviteAccepted"},{"name":"LinkedIn Invite Done","value":"linkedinInviteDone"},{"name":"LinkedIn Invite Failed","value":"linkedinInviteFailed"},{"name":"LinkedIn Not Interested","value":"linkedinNotInterested"},{"name":"LinkedIn Replied","value":"linkedinReplied"},{"name":"LinkedIn Send Failed","value":"linkedinSendFailed"},{"name":"LinkedIn Sent","value":"linkedinSent"},{"name":"LinkedIn Visit Done","value":"linkedinVisitDone"},{"name":"LinkedIn Visit Failed","value":"linkedinVisitFailed"},{"name":"LinkedIn Voice Note Done","value":"linkedinVoiceNoteDone"},{"name":"LinkedIn Voice Note Failed","value":"linkedinVoiceNoteFailed"},{"name":"Manual Interested","value":"manualInterested"},{"name":"Manual Not Interested","value":"manualNotInterested"},{"name":"Not Interested","value":"notInterested"},{"name":"Opportunities Done","value":"opportunitiesDone"},{"name":"Paused","value":"paused"},{"name":"Resumed","value":"resumed"},{"name":"Send Limit Reached","value":"sendLimitReached"},{"name":"Skipped","value":"skipped"},{"name":"Warmed","value":"warmed"}]},{"displayName":"Version","name":"version","type":"string","default":"v2"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"getAll","options":[{"name":"Get Many","value":"getAll","action":"Get many campaigns"},{"name":"Get Stats","value":"getStats","action":"Get campaign stats"}],"displayOptions":{"show":{"resource":["campaign"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":5,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"]}},"options":[{"displayName":"Version","name":"version","type":"string","default":"v2"}]},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to get stats for. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["campaign"],"operation":["getStats"]}}},{"displayName":"Start Date","name":"startDate","type":"dateTime","default":"","required":true,"placeholder":"e.g. 2024-09-03 00:00:00Z","displayOptions":{"show":{"resource":["campaign"],"operation":["getStats"]}}},{"displayName":"End Date","name":"endDate","type":"dateTime","default":"","placeholder":"e.g. 2024-09-03 00:00:00Z","required":true,"displayOptions":{"show":{"resource":["campaign"],"operation":["getStats"]}}},{"displayName":"Timezone","name":"timezone","type":"string","default":"","required":true,"placeholder":"e.g. Europe/Paris","displayOptions":{"show":{"resource":["campaign"],"operation":["getStats"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Get","value":"get","action":"Fetches a previously completed enrichment"},{"name":"Enrich Lead","value":"enrichLead","action":"Enrich a lead using an email or LinkedIn URL"},{"name":"Enrich Person","value":"enrichPerson","action":"Enrich a person using an email or LinkedIn URL"}],"displayOptions":{"show":{"resource":["enrich"]}}},{"displayName":"Enrichment ID","name":"enrichId","type":"string","default":"","required":true,"description":"ID of the enrichment to retrieve","displayOptions":{"show":{"resource":["enrich"],"operation":["get"]}}},{"displayName":"Lead ID","name":"leadId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["enrich"],"operation":["enrichLead"]}}},{"displayName":"Find Email","name":"findEmail","type":"boolean","default":false,"displayOptions":{"show":{"resource":["enrich"],"operation":["enrichLead","enrichPerson"]}}},{"displayName":"Verify Email","name":"verifyEmail","type":"boolean","default":false,"displayOptions":{"show":{"resource":["enrich"],"operation":["enrichLead","enrichPerson"]}}},{"displayName":"Linkedin Enrichment","name":"linkedinEnrichment","type":"boolean","default":false,"displayOptions":{"show":{"resource":["enrich"],"operation":["enrichLead","enrichPerson"]}}},{"displayName":"Find Phone","name":"findPhone","type":"boolean","default":false,"displayOptions":{"show":{"resource":["enrich"],"operation":["enrichLead","enrichPerson"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["enrich"],"operation":["enrichPerson"]}},"options":[{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":""},{"displayName":"First Name","name":"firstName","type":"string","default":""},{"displayName":"Last Name","name":"lastName","type":"string","default":""},{"displayName":"Linkedin Url","name":"linkedinUrl","type":"string","default":""},{"displayName":"Company Name","name":"companyName","type":"string","default":""},{"displayName":"Company Domain","name":"companyDomain","type":"string","default":""}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"create","options":[{"name":"Create","value":"create","action":"Create a lead"},{"name":"Delete","value":"delete","action":"Delete a lead"},{"name":"Get","value":"get","action":"Get a lead"},{"name":"Unsubscribe","value":"unsubscribe","action":"Unsubscribe a lead"}],"displayOptions":{"show":{"resource":["lead"]}}},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to create the lead under. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["lead"],"operation":["create"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to create","displayOptions":{"show":{"resource":["lead"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["lead"],"operation":["create"]}},"options":[{"displayName":"Company Name","name":"companyName","type":"string","default":"","description":"Company name of the lead to create"},{"displayName":"Company Domain","name":"companyDomain","type":"string","default":"","description":"Company domain of the lead to create"},{"displayName":"Deduplicate","name":"deduplicate","type":"boolean","default":false,"description":"Whether to do not insert if this email is already present in another campaign"},{"displayName":"Find Email","name":"findEmail","type":"boolean","default":false,"description":"Whether to find verified email"},{"displayName":"Find Phone","name":"findPhone","type":"boolean","default":false,"description":"Whether to find phone number"},{"displayName":"First Name","name":"firstName","type":"string","default":"","description":"First name of the lead to create"},{"displayName":"Icebreaker","name":"icebreaker","type":"string","default":"","description":"Icebreaker of the lead to create"},{"displayName":"Job Title","name":"jobTitle","type":"string","default":"","description":"Job title of the lead to create"},{"displayName":"Last Name","name":"lastName","type":"string","default":"","description":"Last name of the lead to create"},{"displayName":"Linkedin Enrichment","name":"linkedinEnrichment","type":"boolean","default":false,"description":"Whether to run the LinkedIn enrichment"},{"displayName":"LinkedIn URL","name":"linkedinUrl","type":"string","default":"","description":"LinkedIn URL of the lead to create"},{"displayName":"Phone","name":"phone","type":"string","default":"","description":"Phone number of the lead to create"},{"displayName":"Picture URL","name":"picture","type":"string","default":"","description":"Picture URL of the lead to create"},{"displayName":"Verify Email","name":"verifyEmail","type":"boolean","default":false,"description":"Whether to verify existing email (debounce)"}]},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to remove the lead from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["lead"],"operation":["delete"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to delete","displayOptions":{"show":{"resource":["lead"],"operation":["delete"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to retrieve","displayOptions":{"show":{"resource":["lead"],"operation":["get"]}}},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to unsubscribe the lead from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["lead"],"operation":["unsubscribe"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to unsubscribe","displayOptions":{"show":{"resource":["lead"],"operation":["unsubscribe"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Get","value":"get","action":"Get a team"},{"name":"Get Credits","value":"getCredits","action":"Get a team"}],"displayOptions":{"show":{"resource":["team"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"add","options":[{"name":"Add","value":"add","action":"Add an email to an unsubscribe list"},{"name":"Delete","value":"delete","action":"Delete an email from an unsubscribe list"},{"name":"Get Many","value":"getAll","action":"Get many unsubscribed emails"}],"displayOptions":{"show":{"resource":["unsubscribe"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email to add to the unsubscribes","displayOptions":{"show":{"resource":["unsubscribe"],"operation":["add"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email to delete from the unsubscribes","displayOptions":{"show":{"resource":["unsubscribe"],"operation":["delete"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["unsubscribe"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":5,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["unsubscribe"],"operation":["getAll"],"returnAll":[false]}}}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Lemlist/lemlist.svg","codex":{"categories":["Communication","Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.lemlist/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/lemlist/"}]}}},
|
|
219
220
|
{"displayName":"Lemlist","name":"n8n-nodes-base.lemlist","group":["transform"],"defaultVersion":2,"description":"Consume the Lemlist API","version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","defaults":{"name":"Lemlist"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"lemlistApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Activity","value":"activity"},{"name":"Campaign","value":"campaign"},{"name":"Lead","value":"lead"},{"name":"Team","value":"team"},{"name":"Unsubscribe","value":"unsubscribe"}],"default":"activity"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"getAll","options":[{"name":"Get Many","value":"getAll","action":"Get many activities"}],"displayOptions":{"show":{"resource":["activity"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["activity"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":5,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["activity"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"resource":["activity"],"operation":["getAll"]}},"options":[{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","default":"","typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to retrieve activity for. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Type","name":"type","type":"options","default":"emailsOpened","description":"Type of activity to retrieve","options":[{"name":"Emails Bounced","value":"emailsBounced"},{"name":"Emails Clicked","value":"emailsClicked"},{"name":"Emails Opened","value":"emailsOpened"},{"name":"Emails Replied","value":"emailsReplied"},{"name":"Emails Send Failed","value":"emailsSendFailed"},{"name":"Emails Sent","value":"emailsSent"},{"name":"Emails Unsubscribed","value":"emailsUnsubscribed"}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"getAll","options":[{"name":"Get Many","value":"getAll","action":"Get many campaigns"}],"displayOptions":{"show":{"resource":["campaign"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":5,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["campaign"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"create","options":[{"name":"Create","value":"create","action":"Create a lead"},{"name":"Delete","value":"delete","action":"Delete a lead"},{"name":"Get","value":"get","action":"Get a lead"},{"name":"Unsubscribe","value":"unsubscribe","action":"Unsubscribe a lead"}],"displayOptions":{"show":{"resource":["lead"]}}},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to create the lead under. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["lead"],"operation":["create"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to create","displayOptions":{"show":{"resource":["lead"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["lead"],"operation":["create"]}},"options":[{"displayName":"Company Name","name":"companyName","type":"string","default":"","description":"Company name of the lead to create"},{"displayName":"Deduplicate","name":"deduplicate","type":"boolean","default":false,"description":"Whether to do not insert if this email is already present in another campaign"},{"displayName":"First Name","name":"firstName","type":"string","default":"","description":"First name of the lead to create"},{"displayName":"Last Name","name":"lastName","type":"string","default":"","description":"Last name of the lead to create"},{"displayName":"Icebreaker","name":"icebreaker","type":"string","default":"","description":"Icebreaker of the lead to create"},{"displayName":"Phone","name":"phone","type":"string","default":"","description":"Phone number of the lead to create"},{"displayName":"Picture URL","name":"picture","type":"string","default":"","description":"Picture URL of the lead to create"},{"displayName":"LinkedIn URL","name":"linkedinUrl","type":"string","default":"","description":"LinkedIn URL of the lead to create"}]},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to remove the lead from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["lead"],"operation":["delete"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to delete","displayOptions":{"show":{"resource":["lead"],"operation":["delete"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to retrieve","displayOptions":{"show":{"resource":["lead"],"operation":["get"]}}},{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","required":true,"default":[],"typeOptions":{"loadOptionsMethod":"getCampaigns"},"description":"ID of the campaign to unsubscribe the lead from. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["lead"],"operation":["unsubscribe"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the lead to unsubscribe","displayOptions":{"show":{"resource":["lead"],"operation":["unsubscribe"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Get","value":"get","action":"Get a team"}],"displayOptions":{"show":{"resource":["team"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"add","options":[{"name":"Add","value":"add","action":"Add an email to an unsubscribe list"},{"name":"Delete","value":"delete","action":"Delete an email from an unsubscribe list"},{"name":"Get Many","value":"getAll","action":"Get many unsubscribed emails"}],"displayOptions":{"show":{"resource":["unsubscribe"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email to add to the unsubscribes","displayOptions":{"show":{"resource":["unsubscribe"],"operation":["add"]}}},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email to delete from the unsubscribes","displayOptions":{"show":{"resource":["unsubscribe"],"operation":["delete"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["unsubscribe"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":5,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["unsubscribe"],"operation":["getAll"],"returnAll":[false]}}}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Lemlist/lemlist.svg","codex":{"categories":["Communication","Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.lemlist/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/lemlist/"}]}}},
|
|
220
221
|
{"displayName":"Lemlist Trigger","name":"n8n-nodes-base.lemlistTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"event\"]}}","description":"Handle Lemlist events via webhooks","defaults":{"name":"Lemlist Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"lemlistApi","required":true}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Event","name":"event","type":"options","required":true,"default":"","options":[{"name":"*","value":"*"},{"name":"Contacted","value":"contacted"},{"name":"Hooked","value":"hooked"},{"name":"Attracted","value":"attracted"},{"name":"Warmed","value":"warmed"},{"name":"Interested","value":"interested"},{"name":"Skipped","value":"skipped"},{"name":"Not Interested","value":"notInterested"},{"name":"Emails Sent","value":"emailsSent"},{"name":"Emails Opened","value":"emailsOpened"},{"name":"Emails Clicked","value":"emailsClicked"},{"name":"Emails Replied","value":"emailsReplied"},{"name":"Emails Bounced","value":"emailsBounced"},{"name":"Emails Send Failed","value":"emailsSendFailed"},{"name":"Emails Failed","value":"emailsFailed"},{"name":"Emails Unsubscribed","value":"emailsUnsubscribed"},{"name":"Emails Interested","value":"emailsInterested"},{"name":"Emails Not Interested","value":"emailsNotInterested"},{"name":"Opportunities Done","value":"opportunitiesDone"},{"name":"Aircall Created","value":"aircallCreated"},{"name":"Aircall Ended","value":"aircallEnded"},{"name":"Aircall Done","value":"aircallDone"},{"name":"Aircall Interested","value":"aircallInterested"},{"name":"Aircall Not Interested","value":"aircallNotInterested"},{"name":"Api Done","value":"apiDone"},{"name":"Api Interested","value":"apiInterested"},{"name":"Api Not Interested","value":"apiNotInterested"},{"name":"Api Failed","value":"apiFailed"},{"name":"Linkedin Visit Done","value":"linkedinVisitDone"},{"name":"Linkedin Visit Failed","value":"linkedinVisitFailed"},{"name":"Linkedin Invite Done","value":"linkedinInviteDone"},{"name":"Linkedin Invite Failed","value":"linkedinInviteFailed"},{"name":"Linkedin Invite Accepted","value":"linkedinInviteAccepted"},{"name":"Linkedin Replied","value":"linkedinReplied"},{"name":"Linkedin Sent","value":"linkedinSent"},{"name":"Linkedin Voice Note Done","value":"linkedinVoiceNoteDone"},{"name":"Linkedin Voice Note Failed","value":"linkedinVoiceNoteFailed"},{"name":"Linkedin Interested","value":"linkedinInterested"},{"name":"Linkedin Not Interested","value":"linkedinNotInterested"},{"name":"Linkedin Send Failed","value":"linkedinSendFailed"},{"name":"Manual Interested","value":"manualInterested"},{"name":"Manual Not Interested","value":"manualNotInterested"},{"name":"Paused","value":"paused"},{"name":"Resumed","value":"resumed"},{"name":"Custom Domain Errors","value":"customDomainErrors"},{"name":"Connection Issue","value":"connectionIssue"},{"name":"Send Limit Reached","value":"sendLimitReached"},{"name":"Lemwarm Paused","value":"lemwarmPaused"}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Campaign Name or ID","name":"campaignId","type":"options","typeOptions":{"loadOptionsMethod":"getCampaigns"},"default":"","description":"We'll call this hook only for this campaignId. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Is First","name":"isFirst","type":"boolean","default":false,"description":"Whether to call this hook only the first time this activity happened"}]}],"codex":{"categories":["Communication","Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.lemlisttrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/lemlist/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Lemlist/lemlist.svg"},
|
|
221
|
-
{"displayName":"Line","name":"n8n-nodes-base.line","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Line API","defaults":{"name":"Line"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"lineNotifyOAuth2Api","required":true,"displayOptions":{"show":{"resource":["notification"]}}}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Notification","value":"notification"}],"default":"notification"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["notification"]}},"options":[{"name":"Send","value":"send","description":"Sends notifications to users or groups","action":"Send a notification"}],"default":"send"},{"displayName":"Message","name":"message","required":true,"type":"string","displayOptions":{"show":{"operation":["send"],"resource":["notification"]}},"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["send"],"resource":["notification"]}},"options":[{"displayName":"Image","name":"imageUi","placeholder":"Add Image","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{},"options":[{"name":"imageValue","displayName":"Image","values":[{"displayName":"Binary File","name":"binaryData","type":"boolean","default":false},{"displayName":"Image Full Size","name":"imageFullsize","type":"string","default":"","displayOptions":{"show":{"binaryData":[false]}},"description":"HTTP/HTTPS URL. Maximum size of 2048×2048px JPEG."},{"displayName":"Image Thumbnail","name":"imageThumbnail","type":"string","displayOptions":{"show":{"binaryData":[false]}},"default":"","description":"HTTP/HTTPS URL. Maximum size of 240×240px JPEG."},{"displayName":"Input Binary Field","name":"binaryProperty","type":"string","displayOptions":{"show":{"binaryData":[true]}},"default":"data","hint":"The name of the input binary field containing the file to be written"}]}]},{"displayName":"Notification Disabled","name":"notificationDisabled","type":"boolean","default":false,"description":"<p>true: The user doesn't receive a push notification when the message is sent.</p><p>false: The user receives a push notification when the message is sent</p>"},{"displayName":"Sticker","name":"stickerUi","placeholder":"Add Sticker","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{},"options":[{"name":"stickerValue","displayName":"Sticker","values":[{"displayName":"Sticker ID","name":"stickerId","type":"number","default":""},{"displayName":"Sticker Package ID","name":"stickerPackageId","type":"number","default":"","description":"Package ID"}]}]}]}],"codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.line/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/line/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Line/line.png"},
|
|
222
|
+
{"displayName":"Line","name":"n8n-nodes-base.line","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Line API","defaults":{"name":"Line"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"lineNotifyOAuth2Api","required":true,"displayOptions":{"show":{"resource":["notification"]}}}],"properties":[{"displayName":"End of service: LINE Notify will be discontinued from April 1st 2025, You can find more information <a href=\"https://notify-bot.line.me/closing-announce\" target=\"_blank\">here</a>","name":"notice","type":"notice","default":""},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Notification","value":"notification"}],"default":"notification"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["notification"]}},"options":[{"name":"Send","value":"send","description":"Sends notifications to users or groups","action":"Send a notification"}],"default":"send"},{"displayName":"Message","name":"message","required":true,"type":"string","displayOptions":{"show":{"operation":["send"],"resource":["notification"]}},"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["send"],"resource":["notification"]}},"options":[{"displayName":"Image","name":"imageUi","placeholder":"Add Image","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{},"options":[{"name":"imageValue","displayName":"Image","values":[{"displayName":"Binary File","name":"binaryData","type":"boolean","default":false},{"displayName":"Image Full Size","name":"imageFullsize","type":"string","default":"","displayOptions":{"show":{"binaryData":[false]}},"description":"HTTP/HTTPS URL. Maximum size of 2048×2048px JPEG."},{"displayName":"Image Thumbnail","name":"imageThumbnail","type":"string","displayOptions":{"show":{"binaryData":[false]}},"default":"","description":"HTTP/HTTPS URL. Maximum size of 240×240px JPEG."},{"displayName":"Input Binary Field","name":"binaryProperty","type":"string","displayOptions":{"show":{"binaryData":[true]}},"default":"data","hint":"The name of the input binary field containing the file to be written"}]}]},{"displayName":"Notification Disabled","name":"notificationDisabled","type":"boolean","default":false,"description":"<p>true: The user doesn't receive a push notification when the message is sent.</p><p>false: The user receives a push notification when the message is sent</p>"},{"displayName":"Sticker","name":"stickerUi","placeholder":"Add Sticker","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{},"options":[{"name":"stickerValue","displayName":"Sticker","values":[{"displayName":"Sticker ID","name":"stickerId","type":"number","default":""},{"displayName":"Sticker Package ID","name":"stickerPackageId","type":"number","default":"","description":"Package ID"}]}]}]}],"codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.line/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/line/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Line/line.png"},
|
|
222
223
|
{"displayName":"Linear","name":"n8n-nodes-base.linear","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Linear API","defaults":{"name":"Linear"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"linearApi","required":true,"testedBy":"linearApiTest","displayOptions":{"show":{"authentication":["apiToken"]}}},{"name":"linearOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"API Token","value":"apiToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"apiToken"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Issue","value":"issue"}],"default":"issue"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["issue"]}},"options":[{"name":"Create","value":"create","description":"Create an issue","action":"Create an issue"},{"name":"Delete","value":"delete","description":"Delete an issue","action":"Delete an issue"},{"name":"Get","value":"get","description":"Get an issue","action":"Get an issue"},{"name":"Get Many","value":"getAll","description":"Get many issues","action":"Get many issues"},{"name":"Update","value":"update","description":"Update an issue","action":"Update an issue"}],"default":"create"},{"displayName":"Team Name or ID","name":"teamId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","required":true,"displayOptions":{"show":{"resource":["issue"],"operation":["create"]}},"typeOptions":{"loadOptionsMethod":"getTeams"},"default":""},{"displayName":"Title","name":"title","type":"string","required":true,"displayOptions":{"show":{"resource":["issue"],"operation":["create"]}},"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["issue"],"operation":["create"]}},"options":[{"displayName":"Assignee Name or ID","name":"assigneeId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getUsers"},"default":""},{"displayName":"Description","name":"description","type":"string","default":""},{"displayName":"Priority","name":"priorityId","type":"options","options":[{"name":"Urgent","value":1},{"name":"High","value":2},{"name":"Normal","value":3},{"name":"Low","value":4},{"name":"No Priority","value":0}],"default":0},{"displayName":"State Name or ID","name":"stateId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getStates"},"default":""}]},{"displayName":"Issue ID","name":"issueId","type":"string","required":true,"displayOptions":{"show":{"resource":["issue"],"operation":["get","delete"]}},"default":""},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"displayOptions":{"show":{"resource":["issue"],"operation":["getAll"]}},"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","default":50,"typeOptions":{"minValue":1},"displayOptions":{"show":{"resource":["issue"],"operation":["getAll"],"returnAll":[false]}},"description":"Max number of results to return"},{"displayName":"Issue ID","name":"issueId","type":"string","required":true,"displayOptions":{"show":{"resource":["issue"],"operation":["update"]}},"default":""},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["issue"],"operation":["update"]}},"options":[{"displayName":"Assignee Name or ID","name":"assigneeId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getUsers"},"default":""},{"displayName":"Description","name":"description","type":"string","default":""},{"displayName":"Priority Name/ID","name":"priorityId","type":"options","options":[{"name":"Urgent","value":1},{"name":"High","value":2},{"name":"Medium","value":3},{"name":"Low","value":3},{"name":"No Priority","value":0}],"default":0},{"displayName":"State Name or ID","name":"stateId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getStates"},"default":""},{"displayName":"Team Name or ID","name":"teamId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTeams"},"default":""},{"displayName":"Title","name":"title","type":"string","default":""}]}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.linear/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/linear/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Linear/linear.svg"},
|
|
223
224
|
{"displayName":"Linear Trigger","name":"n8n-nodes-base.linearTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"triggerOn\"]}}","description":"Starts the workflow when Linear events occur","defaults":{"name":"Linear Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"linearApi","required":true,"testedBy":"linearApiTest","displayOptions":{"show":{"authentication":["apiToken"]}}},{"name":"linearOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"API Token","value":"apiToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"apiToken"},{"displayName":"Team Name or ID","name":"teamId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTeams"},"default":""},{"displayName":"Listen to Resources","name":"resources","type":"multiOptions","options":[{"name":"Comment Reaction","value":"reaction"},{"name":"Cycle","value":"cycle"},{"name":"Issue","value":"issue"},{"name":"Issue Comment","value":"comment"},{"name":"Issue Label","value":"issueLabel"},{"name":"Project","value":"project"}],"default":[],"required":true}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.lineartrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/linear/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Linear/linear.svg"},
|
|
224
225
|
{"displayName":"LingvaNex","name":"n8n-nodes-base.lingvaNex","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume LingvaNex API","defaults":{"name":"LingvaNex"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"lingvaNexApi","required":true}],"properties":[{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Translate","value":"translate","description":"Translate data","action":"Translate data"}],"default":"translate"},{"displayName":"Text","name":"text","type":"string","default":"","description":"The input text to translate","required":true,"displayOptions":{"show":{"operation":["translate"]}}},{"displayName":"Translate To","name":"translateTo","type":"options","typeOptions":{"loadOptionsMethod":"getLanguages"},"default":"","description":"The language to use for translation of the input text, set to one of the language codes listed in <a href=\"https://cloud.google.com/translate/docs/languages\">Language Support</a>. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","required":true,"displayOptions":{"show":{"operation":["translate"]}}},{"displayName":"Additional Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"operation":["translate"]}},"options":[{"displayName":"From","name":"from","type":"options","typeOptions":{"loadOptionsMethod":"getLanguages"},"default":"","description":"The language code in the format “language code_code of the country”. If this parameter is not present, the auto-detect language mode is enabled. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Platform","name":"platform","type":"string","default":"api"},{"displayName":"Translate Mode","name":"translateMode","type":"string","default":"","description":"Describe the input text format. Possible value is \"html\" for translating and preserving html structure. If value is not specified or is other than \"html\" than plain text is translating."}]}],"codex":{"categories":["Miscellaneous"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.lingvanex/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/lingvaNex/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/LingvaNex/lingvanex.png"},
|
|
@@ -255,7 +256,7 @@
|
|
|
255
256
|
{"displayName":"Microsoft Graph Security","name":"n8n-nodes-base.microsoftGraphSecurity","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume the Microsoft Graph Security API","defaults":{"name":"Microsoft Graph Security"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"microsoftGraphSecurityOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Secure Score","value":"secureScore"},{"name":"Secure Score Control Profile","value":"secureScoreControlProfile"}],"default":"secureScore"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["secureScore"]}},"options":[{"name":"Get","value":"get","action":"Get a secure score"},{"name":"Get Many","value":"getAll","action":"Get many secure scores"}],"default":"get"},{"displayName":"Secure Score ID","name":"secureScoreId","description":"ID of the secure score to retrieve","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["secureScore"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["secureScore"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":50,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["secureScore"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Filters","name":"filters","type":"collection","default":{},"placeholder":"Add Filter","displayOptions":{"show":{"resource":["secureScore"],"operation":["getAll"]}},"options":[{"displayName":"Filter Query Parameter","name":"filter","description":"<a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">Query parameter</a> to filter results by","type":"string","default":"","placeholder":"currentScore eq 13"},{"displayName":"Include Control Scores","name":"includeControlScores","type":"boolean","default":false}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["secureScoreControlProfile"]}},"options":[{"name":"Get","value":"get","action":"Get a secure score control profile"},{"name":"Get Many","value":"getAll","action":"Get many secure score control profiles"},{"name":"Update","value":"update","action":"Update a secure score control profile"}],"default":"get"},{"displayName":"Secure Score Control Profile ID","name":"secureScoreControlProfileId","description":"ID of the secure score control profile to retrieve","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":50,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Filters","name":"filters","type":"collection","default":{},"placeholder":"Add Filter","displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["getAll"]}},"options":[{"displayName":"Filter Query Parameter","name":"filter","description":"<a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">Query parameter</a> to filter results by","type":"string","default":"","placeholder":"startsWith(id, 'AATP')"}]},{"displayName":"Secure Score Control Profile ID","name":"secureScoreControlProfileId","description":"ID of the secure score control profile to update","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["update"]}}},{"displayName":"Provider","name":"provider","type":"string","description":"Name of the provider of the security product or service","default":"","placeholder":"SecureScore","required":true,"displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["update"]}}},{"displayName":"Vendor","name":"vendor","type":"string","description":"Name of the vendor of the security product or service","default":"","placeholder":"Microsoft","required":true,"displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["secureScoreControlProfile"],"operation":["update"]}},"options":[{"displayName":"State","name":"state","type":"options","default":"Default","description":"Analyst driven setting on the control","options":[{"name":"Default","value":"Default"},{"name":"Ignored","value":"Ignored"},{"name":"Third Party","value":"ThirdParty"}]}]}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.microsoftgraphsecurity/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/GraphSecurity/microsoftGraph.svg"},
|
|
256
257
|
{"displayName":"Microsoft OneDrive","name":"n8n-nodes-base.microsoftOneDrive","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Microsoft OneDrive API","defaults":{"name":"Microsoft OneDrive"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"microsoftOneDriveOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"File","value":"file"},{"name":"Folder","value":"folder"}],"default":"file"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["file"]}},"options":[{"name":"Copy","value":"copy","description":"Copy a file","action":"Copy a file"},{"name":"Delete","value":"delete","description":"Delete a file","action":"Delete a file"},{"name":"Download","value":"download","description":"Download a file","action":"Download a file"},{"name":"Get","value":"get","description":"Get a file","action":"Get a file"},{"name":"Rename","value":"rename","description":"Rename a file","action":"Rename a file"},{"name":"Search","value":"search","description":"Search a file","action":"Search a file"},{"name":"Share","value":"share","description":"Share a file","action":"Share a file"},{"name":"Upload","value":"upload","description":"Upload a file up to 4MB in size","action":"Upload a file"}],"default":"upload"},{"displayName":"File ID","name":"fileId","type":"string","displayOptions":{"show":{"operation":["copy"],"resource":["file"]}},"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["copy"],"resource":["file"]}},"default":{},"options":[{"displayName":"Name","name":"name","type":"string","default":"","description":"The new name for the copy. If this isn't provided, the same name will be used as the original."}]},{"displayName":"Parent Reference","name":"parentReference","type":"collection","placeholder":"Add Parent Reference","description":"Reference to the parent item the copy will be created in <a href=\"https://docs.microsoft.com/en-us/onedrive/developer/rest-api/resources/itemreference?view=odsp-graph-online\"> Details </a>","displayOptions":{"show":{"operation":["copy"],"resource":["file"]}},"default":{},"options":[{"displayName":"Drive ID","name":"driveId","type":"string","default":"","description":"Identifier of the drive instance that contains the item"},{"displayName":"Drive Type","name":"driveType","type":"string","default":"","description":"Identifies the type of drive"},{"displayName":"ID","name":"id","type":"string","default":"","description":"Identifier of the item in the drive"},{"displayName":"List ID","name":"listId","type":"string","default":"","description":"Identifier of the list"},{"displayName":"Name","name":"name","type":"string","default":"","description":"The name of the item being referenced"},{"displayName":"Path","name":"path","type":"string","default":"","description":"Path that can be used to navigate to the item"},{"displayName":"Share ID","name":"shareId","type":"string","default":"","description":"Identifier for a shared resource that can be accessed via the Shares API"},{"displayName":"Site ID","name":"siteId","type":"string","default":"","description":"Identifier of the site"}]},{"displayName":"File ID","name":"fileId","type":"string","displayOptions":{"show":{"operation":["delete"],"resource":["file"]}},"default":"","description":"Field ID"},{"displayName":"File ID","name":"fileId","type":"string","displayOptions":{"show":{"operation":["download"],"resource":["file"]}},"default":""},{"displayName":"Put Output File in Field","name":"binaryPropertyName","type":"string","required":true,"default":"data","displayOptions":{"show":{"operation":["download"],"resource":["file"]}},"hint":"The name of the output binary field to put the file in"},{"displayName":"File ID","name":"fileId","type":"string","displayOptions":{"show":{"operation":["get"],"resource":["file"]}},"default":"","description":"Field ID"},{"displayName":"Item ID","name":"itemId","type":"string","displayOptions":{"show":{"operation":["rename"],"resource":["file"]}},"default":"","description":"ID of the file"},{"displayName":"New Name","name":"newName","type":"string","displayOptions":{"show":{"operation":["rename"],"resource":["file"]}},"default":"","description":"New name for file"},{"displayName":"Query","name":"query","type":"string","displayOptions":{"show":{"operation":["search"],"resource":["file"]}},"default":"","description":"The query text used to search for items. Values may be matched across several fields including filename, metadata, and file content."},{"displayName":"File ID","name":"fileId","type":"string","displayOptions":{"show":{"operation":["share"],"resource":["file"]}},"default":""},{"displayName":"Type","name":"type","type":"options","options":[{"name":"View","value":"view"},{"name":"Edit","value":"edit"},{"name":"Embed","value":"embed"}],"displayOptions":{"show":{"operation":["share"],"resource":["file"]}},"default":"","description":"The type of sharing link to create"},{"displayName":"Scope","name":"scope","type":"options","options":[{"name":"Anonymous","value":"anonymous"},{"name":"Organization","value":"organization"}],"displayOptions":{"show":{"operation":["share"],"resource":["file"]}},"default":"","description":"The type of sharing link to create"},{"displayName":"File Name","name":"fileName","type":"string","displayOptions":{"show":{"operation":["upload"],"resource":["file"]}},"default":"","description":"The name the file should be saved as"},{"displayName":"Parent ID","name":"parentId","required":true,"type":"string","displayOptions":{"show":{"operation":["upload"],"resource":["file"]}},"default":"","description":"ID of the parent folder that will contain the file"},{"displayName":"Binary File","name":"binaryData","type":"boolean","default":false,"required":true,"displayOptions":{"show":{"operation":["upload"],"resource":["file"]}},"description":"Whether the data to upload should be taken from binary field"},{"displayName":"File Content","name":"fileContent","type":"string","default":"","required":true,"displayOptions":{"show":{"binaryData":[false],"operation":["upload"],"resource":["file"]}},"placeholder":"","description":"The text content of the file"},{"displayName":"Input Binary Field","name":"binaryPropertyName","type":"string","default":"data","required":true,"displayOptions":{"show":{"binaryData":[true],"operation":["upload"],"resource":["file"]}},"placeholder":"","hint":"The name of the input binary field containing the file to be written"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folder"]}},"options":[{"name":"Create","value":"create","description":"Create a folder","action":"Create a folder"},{"name":"Delete","value":"delete","description":"Delete a folder","action":"Delete a folder"},{"name":"Get Children","value":"getChildren","description":"Get items inside a folder","action":"Get items in a folder"},{"name":"Rename","value":"rename","description":"Rename a folder","action":"Rename a folder"},{"name":"Search","value":"search","description":"Search a folder","action":"Search a folder"},{"name":"Share","value":"share","description":"Share a folder","action":"Share a folder"}],"default":"getChildren"},{"displayName":"Name","name":"name","required":true,"type":"string","placeholder":"/Pictures/2021","displayOptions":{"show":{"operation":["create"],"resource":["folder"]}},"default":"","description":"The name or path of the folder"},{"displayName":"Options","name":"options","type":"collection","displayOptions":{"show":{"operation":["create"],"resource":["folder"]}},"default":{},"placeholder":"Add Field","options":[{"displayName":"Parent Folder ID","name":"parentFolderId","type":"string","default":"","description":"ID of the folder you want to crate the new folder in"}]},{"displayName":"Folder ID","name":"folderId","type":"string","displayOptions":{"show":{"operation":["delete","getChildren"],"resource":["folder"]}},"default":""},{"displayName":"Item ID","name":"itemId","type":"string","displayOptions":{"show":{"operation":["rename"],"resource":["folder"]}},"default":"","description":"ID of the folder"},{"displayName":"New Name","name":"newName","type":"string","displayOptions":{"show":{"operation":["rename"],"resource":["folder"]}},"default":"","description":"New name for folder"},{"displayName":"Query","name":"query","type":"string","displayOptions":{"show":{"operation":["search"],"resource":["folder"]}},"default":"","description":"The query text used to search for items. Values may be matched across several fields including filename, metadata, and file content."},{"displayName":"Folder ID","name":"folderId","type":"string","displayOptions":{"show":{"operation":["share"],"resource":["folder"]}},"default":"","description":"File ID"},{"displayName":"Type","name":"type","type":"options","options":[{"name":"View","value":"view"},{"name":"Edit","value":"edit"},{"name":"Embed","value":"embed"}],"displayOptions":{"show":{"operation":["share"],"resource":["folder"]}},"default":"","description":"The type of sharing link to create"},{"displayName":"Scope","name":"scope","type":"options","options":[{"name":"Anonymous","value":"anonymous"},{"name":"Organization","value":"organization"}],"displayOptions":{"show":{"operation":["share"],"resource":["folder"]}},"default":"","description":"The type of sharing link to create"}],"codex":{"categories":["Data & Storage"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.microsoftonedrive/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/OneDrive/oneDrive.svg"},
|
|
257
258
|
{"displayName":"Microsoft OneDrive Trigger","name":"n8n-nodes-base.microsoftOneDriveTrigger","group":["trigger"],"version":1,"description":"Trigger for Microsoft OneDrive API.","subtitle":"={{($parameter[\"event\"])}}","defaults":{"name":"Microsoft OneDrive Trigger"},"credentials":[{"name":"microsoftOneDriveOAuth2Api","required":true}],"polling":true,"inputs":[],"outputs":["main"],"properties":[{"displayName":"Poll Times","name":"pollTimes","type":"fixedCollection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Poll Time"},"default":{"item":[{"mode":"everyMinute"}]},"description":"Time at which polling should occur","placeholder":"Add Poll Time","options":[{"name":"item","displayName":"Item","values":[{"displayName":"Mode","name":"mode","type":"options","options":[{"name":"Every Minute","value":"everyMinute"},{"name":"Every Hour","value":"everyHour"},{"name":"Every Day","value":"everyDay"},{"name":"Every Week","value":"everyWeek"},{"name":"Every Month","value":"everyMonth"},{"name":"Every X","value":"everyX"},{"name":"Custom","value":"custom"}],"default":"everyDay","description":"How often to trigger."},{"displayName":"Hour","name":"hour","type":"number","typeOptions":{"minValue":0,"maxValue":23},"displayOptions":{"hide":{"mode":["custom","everyHour","everyMinute","everyX"]}},"default":14,"description":"The hour of the day to trigger (24h format)"},{"displayName":"Minute","name":"minute","type":"number","typeOptions":{"minValue":0,"maxValue":59},"displayOptions":{"hide":{"mode":["custom","everyMinute","everyX"]}},"default":0,"description":"The minute of the day to trigger"},{"displayName":"Day of Month","name":"dayOfMonth","type":"number","displayOptions":{"show":{"mode":["everyMonth"]}},"typeOptions":{"minValue":1,"maxValue":31},"default":1,"description":"The day of the month to trigger"},{"displayName":"Weekday","name":"weekday","type":"options","displayOptions":{"show":{"mode":["everyWeek"]}},"options":[{"name":"Monday","value":"1"},{"name":"Tuesday","value":"2"},{"name":"Wednesday","value":"3"},{"name":"Thursday","value":"4"},{"name":"Friday","value":"5"},{"name":"Saturday","value":"6"},{"name":"Sunday","value":"0"}],"default":"1","description":"The weekday to trigger"},{"displayName":"Cron Expression","name":"cronExpression","type":"string","displayOptions":{"show":{"mode":["custom"]}},"default":"* * * * * *","description":"Use custom cron expression. Values and ranges as follows:<ul><li>Seconds: 0-59</li><li>Minutes: 0 - 59</li><li>Hours: 0 - 23</li><li>Day of Month: 1 - 31</li><li>Months: 0 - 11 (Jan - Dec)</li><li>Day of Week: 0 - 6 (Sun - Sat)</li></ul>"},{"displayName":"Value","name":"value","type":"number","typeOptions":{"minValue":0,"maxValue":1000},"displayOptions":{"show":{"mode":["everyX"]}},"default":2,"description":"All how many X minutes/hours it should trigger"},{"displayName":"Unit","name":"unit","type":"options","displayOptions":{"show":{"mode":["everyX"]}},"options":[{"name":"Minutes","value":"minutes"},{"name":"Hours","value":"hours"}],"default":"hours","description":"If it should trigger all X minutes or hours"}]}]},{"displayName":"Trigger On","name":"event","type":"options","default":"fileCreated","options":[{"name":"File Created","value":"fileCreated","description":"When a new file is created"},{"name":"File Updated","value":"fileUpdated","description":"When an existing file is modified"},{"name":"Folder Created","value":"folderCreated","description":"When a new folder is created"},{"name":"Folder Updated","value":"folderUpdated","description":"When an existing folder is modified"}]},{"displayName":"Simplify","name":"simple","description":"Whether to return a simplified version of the response instead of the raw data","type":"boolean","default":true},{"displayName":"Watch Folder","name":"watchFolder","description":"Whether to watch for the created file in a given folder, rather than the entire OneDrive","type":"boolean","default":false,"displayOptions":{"show":{"event":["fileCreated"]}}},{"displayName":"Watch","name":"watch","description":"How to select which file to watch","type":"options","default":"anyFile","displayOptions":{"show":{"event":["fileUpdated"]}},"options":[{"name":"Any File","value":"anyFile","description":"Watch for updated files in the entire OneDrive"},{"name":"Inside a Folder","value":"selectedFolder","description":"Watch for updated files inside a selected folder"},{"name":"A Selected File","value":"selectedFile","description":"Watch a specific file for updates"}]},{"displayName":"Watch Folder","name":"watchFolder","description":"Whether to watch for the created folder in a given folder, rather than the entire OneDrive","type":"boolean","default":false,"displayOptions":{"show":{"event":["folderCreated"]}}},{"displayName":"Watch","name":"watch","description":"How to select which folder to watch","type":"options","default":"anyFolder","displayOptions":{"show":{"event":["folderUpdated"]}},"options":[{"name":"Any Folder","value":"anyFolder","description":"Watch for updated folders in the entire OneDrive"},{"name":"Inside a Folder","value":"selectedFolder","description":"Watch for updated folders inside a selected folder"},{"name":"A Selected Folder","value":"oneSelectedFolder","description":"Watch a specific folder for updates"}]},{"displayName":"File","name":"fileId","type":"resourceLocator","default":{"mode":"id","value":""},"required":true,"modes":[{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://onedrive.live.com/edit.aspx?resid=170B5C65E30736A3!257&cid=170b5c65e30736a3&CT=1708697995542&OR=ItemsView","extractValue":{"type":"regex","regex":"https:\\/\\/onedrive.live.com(?:\\/.*?(?:\\&|\\?)(?:id=|resid=))(.+?)(?:\\&.*)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/onedrive.live.com(?:\\/.*?(?:\\&|\\?)(?:id=|resid=))(.+?)(?:\\&.*)","errorMessage":"Not a valid Microsoft Drive File URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. 170B5C65E30736A3!257","validation":[{"type":"regex","properties":{"regex":"[a-zA-Z0-9\\!%21]{5,}","errorMessage":"Not a valid Microsoft Drive File ID"}}],"url":"=https://onedrive.live.com/?id={{$value}}"}],"description":"The file to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'.","displayOptions":{"show":{"event":["fileUpdated"],"watch":["selectedFile"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"id","value":"","cachedResultName":""},"required":true,"modes":[{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://onedrive.live.com/?id=170B5C65E30736A3%21103&cid=170B5C65E30736A3","extractValue":{"type":"regex","regex":"https:\\/\\/onedrive.live.com(?:\\/.*id=)(.+)(?:\\&cid.*)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/onedrive.live.com(?:\\/.*id=)(.+)(?:\\&cid.*)","errorMessage":"Not a valid Microsoft Drive Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. 170B5C65E30736A3%21136","validation":[{"type":"regex","properties":{"regex":"[a-zA-Z0-9\\!%21]{5,}","errorMessage":"Not a valid Microsoft Drive Folder ID"}}],"url":"=https://onedrive.live.com/?id={{$value}}"}],"description":"The folder to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'.","displayOptions":{"show":{"watch":["selectedFolder","oneSelectedFolder"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"id","value":"","cachedResultName":""},"required":true,"modes":[{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://onedrive.live.com/?id=170B5C65E30736A3%21103&cid=170B5C65E30736A3","extractValue":{"type":"regex","regex":"https:\\/\\/onedrive.live.com(?:\\/.*id=)(.+)(?:\\&cid.*)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/onedrive.live.com(?:\\/.*id=)(.+)(?:\\&cid.*)","errorMessage":"Not a valid Microsoft Drive Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. 170B5C65E30736A3%21136","validation":[{"type":"regex","properties":{"regex":"[a-zA-Z0-9\\!%21]{5,}","errorMessage":"Not a valid Microsoft Drive Folder ID"}}],"url":"=https://onedrive.live.com/?id={{$value}}"}],"description":"The folder to operate on. The 'By URL' option only accepts URLs that start with 'https://onedrive.live.com'.","displayOptions":{"show":{"watchFolder":[true]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"watch":["selectedFolder"]}},"options":[{"displayName":"Watch Nested Folders","name":"folderChild","type":"boolean","default":false,"description":"Whether to look for modified files/folders in all nested folders, rather than only direct descendants"}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"watchFolder":[true]}},"options":[{"displayName":"Watch Nested Folders","name":"folderChild","type":"boolean","default":false,"description":"Whether to look for modified files/folders in all nested folders, rather than only direct descendants"}]}],"codex":{"categories":["Data & Storage"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftonedrivetrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/OneDrive/oneDrive.svg"},
|
|
258
|
-
{"displayName":"Microsoft Outlook","name":"n8n-nodes-base.microsoftOutlook","group":["transform"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Microsoft Outlook API","defaultVersion":2,"version":2,"defaults":{"name":"Microsoft Outlook"},"inputs":["main"],"outputs":["main"],"usableAsTool":true,"credentials":[{"name":"microsoftOutlookOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"default":"message","options":[{"name":"Calendar","value":"calendar"},{"name":"Contact","value":"contact"},{"name":"Draft","value":"draft"},{"name":"Event","value":"event"},{"name":"Folder","value":"folder"},{"name":"Folder Message","value":"folderMessage"},{"name":"Message","value":"message"},{"name":"Message Attachment","value":"messageAttachment"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["calendar"]}},"options":[{"name":"Create","value":"create","description":"Create a new calendar","action":"Create a calendar"},{"name":"Delete","value":"delete","description":"Delete a calendar","action":"Delete a calendar"},{"name":"Get","value":"get","description":"Retrieve a calendar","action":"Get a calendar"},{"name":"Get Many","value":"getAll","description":"List and search calendars","action":"Get many calendars"},{"name":"Update","value":"update","description":"Update a calendar","action":"Update a calendar"}],"default":"getAll"},{"displayName":"Name","name":"name","type":"string","default":"","required":true,"description":"The name of the calendar to create","placeholder":"e.g. My Calendar","displayOptions":{"show":{"resource":["calendar"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Calendar Group","name":"calendarGroup","type":"options","typeOptions":{"loadOptionsMethod":"getCalendarGroups"},"default":[],"description":"If set, the calendar will be created in the specified calendar group. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Color","name":"color","type":"options","default":"lightBlue","options":[{"name":"Light Blue","value":"lightBlue"},{"name":"Light Brown","value":"lightBrown"},{"name":"Light Gray","value":"lightGray"},{"name":"Light Green","value":"lightGreen"},{"name":"Light Orange","value":"lightOrange"},{"name":"Light Pink","value":"lightPink"},{"name":"Light Red","value":"lightRed"},{"name":"Light Teal","value":"lightTeal"},{"name":"Light Yellow","value":"lightYellow"}],"description":"Specify the color to distinguish the calendar from the others"}],"displayOptions":{"show":{"resource":["calendar"],"operation":["create"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["delete"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["calendar"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["calendar"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. canShare eq true","hint":"Search query to filter calendars. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["getAll"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Color","name":"color","type":"options","default":"lightBlue","options":[{"name":"Light Blue","value":"lightBlue"},{"name":"Light Brown","value":"lightBrown"},{"name":"Light Gray","value":"lightGray"},{"name":"Light Green","value":"lightGreen"},{"name":"Light Orange","value":"lightOrange"},{"name":"Light Pink","value":"lightPink"},{"name":"Light Red","value":"lightRed"},{"name":"Light Teal","value":"lightTeal"},{"name":"Light Yellow","value":"lightYellow"}],"description":"Specify the color to distinguish the calendar from the others"},{"displayName":"Default Calendar","name":"isDefaultCalendar","type":"boolean","default":false},{"displayName":"Name","name":"name","type":"string","default":"","placeholder":"e.g. My Calendar","description":"The name of the calendar"}],"displayOptions":{"show":{"resource":["calendar"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["contact"]}},"options":[{"name":"Create","value":"create","description":"Create a new contact","action":"Create a contact"},{"name":"Delete","value":"delete","description":"Delete a contact","action":"Delete a contact"},{"name":"Get","value":"get","description":"Retrieve a contact","action":"Get a contact"},{"name":"Get Many","value":"getAll","description":"List and search contacts","action":"Get many contacts"},{"name":"Update","value":"update","description":"Update a contact","action":"Update a contact"}],"default":"getAll"},{"displayName":"First Name","name":"givenName","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["contact"],"operation":["create"]}}},{"displayName":"Last Name","name":"surname","type":"string","default":"","displayOptions":{"show":{"resource":["contact"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Assistant Name","name":"assistantName","type":"string","default":"","description":"The name of the contact's assistant"},{"displayName":"Birthday","name":"birthday","type":"dateTime","default":""},{"displayName":"Business Address","name":"businessAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Business Home Page","name":"businessHomePage","type":"string","default":""},{"displayName":"Business Phones","name":"businessPhones","type":"string","description":"Comma-separated list of business phone numbers","default":""},{"displayName":"Categories","name":"categories","description":"Comma-separated list of categories associated with the contact","type":"string","default":""},{"displayName":"Children","name":"children","description":"Comma-separated list of names of the contact's children","type":"string","default":""},{"displayName":"Company Name","name":"companyName","type":"string","default":""},{"displayName":"Department","name":"department","type":"string","default":""},{"displayName":"Display Name","name":"displayName","type":"string","default":""},{"displayName":"Email Address","name":"emailAddresses","type":"fixedCollection","placeholder":"Add Email","typeOptions":{"multipleValues":true},"default":{},"options":[{"displayName":"Email","name":"values","values":[{"displayName":"Name","name":"name","type":"string","default":""},{"displayName":"Address","name":"address","type":"string","default":""}]}]},{"displayName":"File As","name":"fileAs","type":"string","default":"","description":"The name the contact is filed under"},{"displayName":"Home Address","name":"homeAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Home Phones","name":"homePhones","type":"string","default":"","hint":"Multiple phones can be added separated by ,"},{"displayName":"Instant Messaging Addresses","name":"imAddresses","description":"The contact's instant messaging (IM) addresses","type":"string","default":"","hint":"Multiple addresses can be added separated by ,"},{"displayName":"Initials","name":"initials","type":"string","default":""},{"displayName":"Job Title","name":"jobTitle","type":"string","default":""},{"displayName":"Manager","name":"manager","type":"string","default":"","description":"The name of the contact's manager"},{"displayName":"Middle Name","name":"middleName","type":"string","default":""},{"displayName":"Mobile Phone","name":"mobilePhone","type":"string","default":""},{"displayName":"Name","name":"givenName","type":"string","default":"","displayOptions":{"show":{"/operation":["update"]}}},{"displayName":"Nickname","name":"nickName","type":"string","default":""},{"displayName":"Office Location","name":"officeLocation","type":"string","default":""},{"displayName":"Other Address","name":"otherAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Personal Notes","name":"personalNotes","type":"string","default":"","typeOptions":{"alwaysOpenEditWindow":true}},{"displayName":"Profession","name":"profession","type":"string","default":""},{"displayName":"Spouse Name","name":"spouseName","type":"string","default":""},{"displayName":"Surname","name":"surname","type":"string","default":""},{"displayName":"Title","name":"title","type":"string","default":""}],"displayOptions":{"show":{"resource":["contact"],"operation":["create"]}}},{"displayName":"Contact","name":"contactId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a contact...","typeOptions":{"searchListMethod":"searchContacts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["contact"],"operation":["delete"]}}},{"displayName":"Contact","name":"contactId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a contact...","typeOptions":{"searchListMethod":"searchContacts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["contact"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["contact"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["contact"],"operation":["get"]}},"options":[{"name":"createdDateTime","value":"createdDateTime"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"changeKey","value":"changeKey"},{"name":"categories","value":"categories"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"birthday","value":"birthday"},{"name":"fileAs","value":"fileAs"},{"name":"displayName","value":"displayName"},{"name":"givenName","value":"givenName"},{"name":"initials","value":"initials"},{"name":"middleName","value":"middleName"},{"name":"nickName","value":"nickName"},{"name":"surname","value":"surname"},{"name":"title","value":"title"},{"name":"yomiGivenName","value":"yomiGivenName"},{"name":"yomiSurname","value":"yomiSurname"},{"name":"yomiCompanyName","value":"yomiCompanyName"},{"name":"generation","value":"generation"},{"name":"imAddresses","value":"imAddresses"},{"name":"jobTitle","value":"jobTitle"},{"name":"companyName","value":"companyName"},{"name":"department","value":"department"},{"name":"officeLocation","value":"officeLocation"},{"name":"profession","value":"profession"},{"name":"businessHomePage","value":"businessHomePage"},{"name":"assistantName","value":"assistantName"},{"name":"manager","value":"manager"},{"name":"homePhones","value":"homePhones"},{"name":"mobilePhone","value":"mobilePhone"},{"name":"businessPhones","value":"businessPhones"},{"name":"spouseName","value":"spouseName"},{"name":"personalNotes","value":"personalNotes"},{"name":"children","value":"children"},{"name":"emailAddresses","value":"emailAddresses"},{"name":"homeAddress","value":"homeAddress"},{"name":"businessAddress","value":"businessAddress"},{"name":"otherAddress","value":"otherAddress"}],"default":[]},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["contact"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["contact"],"operation":["getAll"]}},"options":[{"name":"createdDateTime","value":"createdDateTime"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"changeKey","value":"changeKey"},{"name":"categories","value":"categories"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"birthday","value":"birthday"},{"name":"fileAs","value":"fileAs"},{"name":"displayName","value":"displayName"},{"name":"givenName","value":"givenName"},{"name":"initials","value":"initials"},{"name":"middleName","value":"middleName"},{"name":"nickName","value":"nickName"},{"name":"surname","value":"surname"},{"name":"title","value":"title"},{"name":"yomiGivenName","value":"yomiGivenName"},{"name":"yomiSurname","value":"yomiSurname"},{"name":"yomiCompanyName","value":"yomiCompanyName"},{"name":"generation","value":"generation"},{"name":"imAddresses","value":"imAddresses"},{"name":"jobTitle","value":"jobTitle"},{"name":"companyName","value":"companyName"},{"name":"department","value":"department"},{"name":"officeLocation","value":"officeLocation"},{"name":"profession","value":"profession"},{"name":"businessHomePage","value":"businessHomePage"},{"name":"assistantName","value":"assistantName"},{"name":"manager","value":"manager"},{"name":"homePhones","value":"homePhones"},{"name":"mobilePhone","value":"mobilePhone"},{"name":"businessPhones","value":"businessPhones"},{"name":"spouseName","value":"spouseName"},{"name":"personalNotes","value":"personalNotes"},{"name":"children","value":"children"},{"name":"emailAddresses","value":"emailAddresses"},{"name":"homeAddress","value":"homeAddress"},{"name":"businessAddress","value":"businessAddress"},{"name":"otherAddress","value":"otherAddress"}],"default":[]},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. displayName eq 'John Doe'","hint":"Search query to filter contacts. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Email Address","name":"emailAddress","type":"string","default":"","description":"If contacts that you want to retrieve have multiple email addresses, you can enter them separated by commas"}],"displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}}},{"displayName":"Contact","name":"contactId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a contact...","typeOptions":{"searchListMethod":"searchContacts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["contact"],"operation":["update"]}}},{"displayName":"Update Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Assistant Name","name":"assistantName","type":"string","default":"","description":"The name of the contact's assistant"},{"displayName":"Birthday","name":"birthday","type":"dateTime","default":""},{"displayName":"Business Address","name":"businessAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Business Home Page","name":"businessHomePage","type":"string","default":""},{"displayName":"Business Phones","name":"businessPhones","type":"string","description":"Comma-separated list of business phone numbers","default":""},{"displayName":"Categories","name":"categories","description":"Comma-separated list of categories associated with the contact","type":"string","default":""},{"displayName":"Children","name":"children","description":"Comma-separated list of names of the contact's children","type":"string","default":""},{"displayName":"Company Name","name":"companyName","type":"string","default":""},{"displayName":"Department","name":"department","type":"string","default":""},{"displayName":"Display Name","name":"displayName","type":"string","default":""},{"displayName":"Email Address","name":"emailAddresses","type":"fixedCollection","placeholder":"Add Email","typeOptions":{"multipleValues":true},"default":{},"options":[{"displayName":"Email","name":"values","values":[{"displayName":"Name","name":"name","type":"string","default":""},{"displayName":"Address","name":"address","type":"string","default":""}]}]},{"displayName":"File As","name":"fileAs","type":"string","default":"","description":"The name the contact is filed under"},{"displayName":"Home Address","name":"homeAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Home Phones","name":"homePhones","type":"string","default":"","hint":"Multiple phones can be added separated by ,"},{"displayName":"Instant Messaging Addresses","name":"imAddresses","description":"The contact's instant messaging (IM) addresses","type":"string","default":"","hint":"Multiple addresses can be added separated by ,"},{"displayName":"Initials","name":"initials","type":"string","default":""},{"displayName":"Job Title","name":"jobTitle","type":"string","default":""},{"displayName":"Manager","name":"manager","type":"string","default":"","description":"The name of the contact's manager"},{"displayName":"Middle Name","name":"middleName","type":"string","default":""},{"displayName":"Mobile Phone","name":"mobilePhone","type":"string","default":""},{"displayName":"Name","name":"givenName","type":"string","default":"","displayOptions":{"show":{"/operation":["update"]}}},{"displayName":"Nickname","name":"nickName","type":"string","default":""},{"displayName":"Office Location","name":"officeLocation","type":"string","default":""},{"displayName":"Other Address","name":"otherAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Personal Notes","name":"personalNotes","type":"string","default":"","typeOptions":{"alwaysOpenEditWindow":true}},{"displayName":"Profession","name":"profession","type":"string","default":""},{"displayName":"Spouse Name","name":"spouseName","type":"string","default":""},{"displayName":"Surname","name":"surname","type":"string","default":""},{"displayName":"Title","name":"title","type":"string","default":""}],"displayOptions":{"show":{"resource":["contact"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["draft"]}},"options":[{"name":"Create","value":"create","description":"Create a new email draft","action":"Create a draft"},{"name":"Delete","value":"delete","description":"Delete an email draft","action":"Delete a draft"},{"name":"Get","value":"get","description":"Retrieve an email draft","action":"Get a draft"},{"name":"Send","value":"send","description":"Send an existing email draft","action":"Send a draft"},{"name":"Update","value":"update","description":"Update an email draft","action":"Update a draft"}],"default":"create"},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":"","displayOptions":{"show":{"resource":["draft"],"operation":["create"]}}},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":"","displayOptions":{"show":{"resource":["draft"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Input Data Field Name","name":"binaryPropertyName","type":"string","default":"","placeholder":"e.g. data","hint":"The name of the input field containing the binary file data to be attached"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","placeholder":"e.g. replyto@example.com","default":""},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","placeholder":"e.g. john@example.com","default":""}],"displayOptions":{"show":{"resource":["draft"],"operation":["create"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["delete"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["draft"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["draft"],"operation":["get"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}],"displayOptions":{"show":{"resource":["draft"],"operation":["get"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["send"]}}},{"displayName":"To","name":"to","description":"Comma-separated list of email addresses of recipients","type":"string","default":"","displayOptions":{"show":{"resource":["draft"],"operation":["send"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Is Read","name":"isRead","description":"Whether the message must be marked as read","type":"boolean","default":false},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","placeholder":"e.g. replyto@example.com","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","placeholder":"e.g. john@example.com","default":""}],"displayOptions":{"show":{"resource":["draft"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["event"]}},"options":[{"name":"Create","value":"create","description":"Create a new event","action":"Create an event"},{"name":"Delete","value":"delete","description":"Delete an event","action":"Delete an event"},{"name":"Get","value":"get","description":"Retrieve an event","action":"Get an event"},{"name":"Get Many","value":"getAll","description":"List and search events","action":"Get many events"},{"name":"Update","value":"update","description":"Update an event","action":"Update an event"}],"default":"getAll"},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Title","name":"subject","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Start","name":"startDateTime","type":"dateTime","default":"2024-10-09T16:33:09.058+00:00","required":true,"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"End","name":"endDateTime","type":"dateTime","required":true,"default":"2024-10-09T17:03:09.058+00:00","displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Categories","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"Description","name":"body","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Description Preview","name":"bodyPreview","type":"string","default":""},{"displayName":"Hide Attendees","name":"hideAttendees","type":"boolean","default":false,"description":"Whether to allow each attendee to only see themselves in the meeting request and meeting tracking list"},{"displayName":"Importance","name":"importance","type":"options","options":[{"name":"Low","value":"low"},{"name":"Normal","value":"normal"},{"name":"High","value":"high"}],"default":"normal"},{"displayName":"Is All Day","name":"isAllDay","type":"boolean","default":false},{"displayName":"Is Cancelled","name":"isCancelled","type":"boolean","default":false},{"displayName":"Is Draft","name":"isDraft","type":"boolean","default":false},{"displayName":"Is Online Meeting","name":"isOnlineMeeting","type":"boolean","default":false},{"displayName":"Sensitivity","name":"sensitivity","type":"options","default":"normal","options":[{"name":"Normal","value":"normal"},{"name":"Personal","value":"personal"},{"name":"Private","value":"private"},{"name":"Confidential","value":"confidential"}]},{"displayName":"Show As","name":"showAs","type":"options","default":"free","options":[{"name":"Busy","value":"busy"},{"name":"Free","value":"free"},{"name":"Oof","value":"oof"},{"name":"Tentative","value":"tentative"},{"name":"Working Elsewhere","value":"workingElsewhere"}]},{"displayName":"Timezone","name":"timeZone","type":"options","default":"UTC","options":[{"name":"Africa/Abidjan","value":"Africa/Abidjan"},{"name":"Africa/Accra","value":"Africa/Accra"},{"name":"Africa/Addis_Ababa","value":"Africa/Addis_Ababa"},{"name":"Africa/Algiers","value":"Africa/Algiers"},{"name":"Africa/Asmara","value":"Africa/Asmara"},{"name":"Africa/Asmera","value":"Africa/Asmera"},{"name":"Africa/Bamako","value":"Africa/Bamako"},{"name":"Africa/Bangui","value":"Africa/Bangui"},{"name":"Africa/Banjul","value":"Africa/Banjul"},{"name":"Africa/Bissau","value":"Africa/Bissau"},{"name":"Africa/Blantyre","value":"Africa/Blantyre"},{"name":"Africa/Brazzaville","value":"Africa/Brazzaville"},{"name":"Africa/Bujumbura","value":"Africa/Bujumbura"},{"name":"Africa/Cairo","value":"Africa/Cairo"},{"name":"Africa/Casablanca","value":"Africa/Casablanca"},{"name":"Africa/Ceuta","value":"Africa/Ceuta"},{"name":"Africa/Conakry","value":"Africa/Conakry"},{"name":"Africa/Dakar","value":"Africa/Dakar"},{"name":"Africa/Dar_es_Salaam","value":"Africa/Dar_es_Salaam"},{"name":"Africa/Djibouti","value":"Africa/Djibouti"},{"name":"Africa/Douala","value":"Africa/Douala"},{"name":"Africa/El_Aaiun","value":"Africa/El_Aaiun"},{"name":"Africa/Freetown","value":"Africa/Freetown"},{"name":"Africa/Gaborone","value":"Africa/Gaborone"},{"name":"Africa/Harare","value":"Africa/Harare"},{"name":"Africa/Johannesburg","value":"Africa/Johannesburg"},{"name":"Africa/Juba","value":"Africa/Juba"},{"name":"Africa/Kampala","value":"Africa/Kampala"},{"name":"Africa/Khartoum","value":"Africa/Khartoum"},{"name":"Africa/Kigali","value":"Africa/Kigali"},{"name":"Africa/Kinshasa","value":"Africa/Kinshasa"},{"name":"Africa/Lagos","value":"Africa/Lagos"},{"name":"Africa/Libreville","value":"Africa/Libreville"},{"name":"Africa/Lome","value":"Africa/Lome"},{"name":"Africa/Luanda","value":"Africa/Luanda"},{"name":"Africa/Lubumbashi","value":"Africa/Lubumbashi"},{"name":"Africa/Lusaka","value":"Africa/Lusaka"},{"name":"Africa/Malabo","value":"Africa/Malabo"},{"name":"Africa/Maputo","value":"Africa/Maputo"},{"name":"Africa/Maseru","value":"Africa/Maseru"},{"name":"Africa/Mbabane","value":"Africa/Mbabane"},{"name":"Africa/Mogadishu","value":"Africa/Mogadishu"},{"name":"Africa/Monrovia","value":"Africa/Monrovia"},{"name":"Africa/Nairobi","value":"Africa/Nairobi"},{"name":"Africa/Ndjamena","value":"Africa/Ndjamena"},{"name":"Africa/Niamey","value":"Africa/Niamey"},{"name":"Africa/Nouakchott","value":"Africa/Nouakchott"},{"name":"Africa/Ouagadougou","value":"Africa/Ouagadougou"},{"name":"Africa/Porto-Novo","value":"Africa/Porto-Novo"},{"name":"Africa/Sao_Tome","value":"Africa/Sao_Tome"},{"name":"Africa/Timbuktu","value":"Africa/Timbuktu"},{"name":"Africa/Tripoli","value":"Africa/Tripoli"},{"name":"Africa/Tunis","value":"Africa/Tunis"},{"name":"Africa/Windhoek","value":"Africa/Windhoek"},{"name":"America/Adak","value":"America/Adak"},{"name":"America/Anchorage","value":"America/Anchorage"},{"name":"America/Anguilla","value":"America/Anguilla"},{"name":"America/Antigua","value":"America/Antigua"},{"name":"America/Araguaina","value":"America/Araguaina"},{"name":"America/Argentina/Buenos_Aires","value":"America/Argentina/Buenos_Aires"},{"name":"America/Argentina/Catamarca","value":"America/Argentina/Catamarca"},{"name":"America/Argentina/ComodRivadavia","value":"America/Argentina/ComodRivadavia"},{"name":"America/Argentina/Cordoba","value":"America/Argentina/Cordoba"},{"name":"America/Argentina/Jujuy","value":"America/Argentina/Jujuy"},{"name":"America/Argentina/La_Rioja","value":"America/Argentina/La_Rioja"},{"name":"America/Argentina/Mendoza","value":"America/Argentina/Mendoza"},{"name":"America/Argentina/Rio_Gallegos","value":"America/Argentina/Rio_Gallegos"},{"name":"America/Argentina/Salta","value":"America/Argentina/Salta"},{"name":"America/Argentina/San_Juan","value":"America/Argentina/San_Juan"},{"name":"America/Argentina/San_Luis","value":"America/Argentina/San_Luis"},{"name":"America/Argentina/Tucuman","value":"America/Argentina/Tucuman"},{"name":"America/Argentina/Ushuaia","value":"America/Argentina/Ushuaia"},{"name":"America/Aruba","value":"America/Aruba"},{"name":"America/Asuncion","value":"America/Asuncion"},{"name":"America/Atikokan","value":"America/Atikokan"},{"name":"America/Atka","value":"America/Atka"},{"name":"America/Bahia","value":"America/Bahia"},{"name":"America/Bahia_Banderas","value":"America/Bahia_Banderas"},{"name":"America/Barbados","value":"America/Barbados"},{"name":"America/Belem","value":"America/Belem"},{"name":"America/Belize","value":"America/Belize"},{"name":"America/Blanc-Sablon","value":"America/Blanc-Sablon"},{"name":"America/Boa_Vista","value":"America/Boa_Vista"},{"name":"America/Bogota","value":"America/Bogota"},{"name":"America/Boise","value":"America/Boise"},{"name":"America/Buenos_Aires","value":"America/Buenos_Aires"},{"name":"America/Cambridge_Bay","value":"America/Cambridge_Bay"},{"name":"America/Campo_Grande","value":"America/Campo_Grande"},{"name":"America/Cancun","value":"America/Cancun"},{"name":"America/Caracas","value":"America/Caracas"},{"name":"America/Catamarca","value":"America/Catamarca"},{"name":"America/Cayenne","value":"America/Cayenne"},{"name":"America/Cayman","value":"America/Cayman"},{"name":"America/Chicago","value":"America/Chicago"},{"name":"America/Chihuahua","value":"America/Chihuahua"},{"name":"America/Coral_Harbour","value":"America/Coral_Harbour"},{"name":"America/Cordoba","value":"America/Cordoba"},{"name":"America/Costa_Rica","value":"America/Costa_Rica"},{"name":"America/Creston","value":"America/Creston"},{"name":"America/Cuiaba","value":"America/Cuiaba"},{"name":"America/Curacao","value":"America/Curacao"},{"name":"America/Danmarkshavn","value":"America/Danmarkshavn"},{"name":"America/Dawson","value":"America/Dawson"},{"name":"America/Dawson_Creek","value":"America/Dawson_Creek"},{"name":"America/Denver","value":"America/Denver"},{"name":"America/Detroit","value":"America/Detroit"},{"name":"America/Dominica","value":"America/Dominica"},{"name":"America/Edmonton","value":"America/Edmonton"},{"name":"America/Eirunepe","value":"America/Eirunepe"},{"name":"America/El_Salvador","value":"America/El_Salvador"},{"name":"America/Ensenada","value":"America/Ensenada"},{"name":"America/Fort_Nelson","value":"America/Fort_Nelson"},{"name":"America/Fort_Wayne","value":"America/Fort_Wayne"},{"name":"America/Fortaleza","value":"America/Fortaleza"},{"name":"America/Glace_Bay","value":"America/Glace_Bay"},{"name":"America/Godthab","value":"America/Godthab"},{"name":"America/Goose_Bay","value":"America/Goose_Bay"},{"name":"America/Grand_Turk","value":"America/Grand_Turk"},{"name":"America/Grenada","value":"America/Grenada"},{"name":"America/Guadeloupe","value":"America/Guadeloupe"},{"name":"America/Guatemala","value":"America/Guatemala"},{"name":"America/Guayaquil","value":"America/Guayaquil"},{"name":"America/Guyana","value":"America/Guyana"},{"name":"America/Halifax","value":"America/Halifax"},{"name":"America/Havana","value":"America/Havana"},{"name":"America/Hermosillo","value":"America/Hermosillo"},{"name":"America/Indiana/Indianapolis","value":"America/Indiana/Indianapolis"},{"name":"America/Indiana/Knox","value":"America/Indiana/Knox"},{"name":"America/Indiana/Marengo","value":"America/Indiana/Marengo"},{"name":"America/Indiana/Petersburg","value":"America/Indiana/Petersburg"},{"name":"America/Indiana/Tell_City","value":"America/Indiana/Tell_City"},{"name":"America/Indiana/Vevay","value":"America/Indiana/Vevay"},{"name":"America/Indiana/Vincennes","value":"America/Indiana/Vincennes"},{"name":"America/Indiana/Winamac","value":"America/Indiana/Winamac"},{"name":"America/Indianapolis","value":"America/Indianapolis"},{"name":"America/Inuvik","value":"America/Inuvik"},{"name":"America/Iqaluit","value":"America/Iqaluit"},{"name":"America/Jamaica","value":"America/Jamaica"},{"name":"America/Jujuy","value":"America/Jujuy"},{"name":"America/Juneau","value":"America/Juneau"},{"name":"America/Kentucky/Louisville","value":"America/Kentucky/Louisville"},{"name":"America/Kentucky/Monticello","value":"America/Kentucky/Monticello"},{"name":"America/Knox_IN","value":"America/Knox_IN"},{"name":"America/Kralendijk","value":"America/Kralendijk"},{"name":"America/La_Paz","value":"America/La_Paz"},{"name":"America/Lima","value":"America/Lima"},{"name":"America/Los_Angeles","value":"America/Los_Angeles"},{"name":"America/Louisville","value":"America/Louisville"},{"name":"America/Lower_Princes","value":"America/Lower_Princes"},{"name":"America/Maceio","value":"America/Maceio"},{"name":"America/Managua","value":"America/Managua"},{"name":"America/Manaus","value":"America/Manaus"},{"name":"America/Marigot","value":"America/Marigot"},{"name":"America/Martinique","value":"America/Martinique"},{"name":"America/Matamoros","value":"America/Matamoros"},{"name":"America/Mazatlan","value":"America/Mazatlan"},{"name":"America/Mendoza","value":"America/Mendoza"},{"name":"America/Menominee","value":"America/Menominee"},{"name":"America/Merida","value":"America/Merida"},{"name":"America/Metlakatla","value":"America/Metlakatla"},{"name":"America/Mexico_City","value":"America/Mexico_City"},{"name":"America/Miquelon","value":"America/Miquelon"},{"name":"America/Moncton","value":"America/Moncton"},{"name":"America/Monterrey","value":"America/Monterrey"},{"name":"America/Montevideo","value":"America/Montevideo"},{"name":"America/Montreal","value":"America/Montreal"},{"name":"America/Montserrat","value":"America/Montserrat"},{"name":"America/Nassau","value":"America/Nassau"},{"name":"America/New_York","value":"America/New_York"},{"name":"America/Nipigon","value":"America/Nipigon"},{"name":"America/Nome","value":"America/Nome"},{"name":"America/Noronha","value":"America/Noronha"},{"name":"America/North_Dakota/Beulah","value":"America/North_Dakota/Beulah"},{"name":"America/North_Dakota/Center","value":"America/North_Dakota/Center"},{"name":"America/North_Dakota/New_Salem","value":"America/North_Dakota/New_Salem"},{"name":"America/Nuuk","value":"America/Nuuk"},{"name":"America/Ojinaga","value":"America/Ojinaga"},{"name":"America/Panama","value":"America/Panama"},{"name":"America/Pangnirtung","value":"America/Pangnirtung"},{"name":"America/Paramaribo","value":"America/Paramaribo"},{"name":"America/Phoenix","value":"America/Phoenix"},{"name":"America/Port-au-Prince","value":"America/Port-au-Prince"},{"name":"America/Port_of_Spain","value":"America/Port_of_Spain"},{"name":"America/Porto_Acre","value":"America/Porto_Acre"},{"name":"America/Porto_Velho","value":"America/Porto_Velho"},{"name":"America/Puerto_Rico","value":"America/Puerto_Rico"},{"name":"America/Punta_Arenas","value":"America/Punta_Arenas"},{"name":"America/Rainy_River","value":"America/Rainy_River"},{"name":"America/Rankin_Inlet","value":"America/Rankin_Inlet"},{"name":"America/Recife","value":"America/Recife"},{"name":"America/Regina","value":"America/Regina"},{"name":"America/Resolute","value":"America/Resolute"},{"name":"America/Rio_Branco","value":"America/Rio_Branco"},{"name":"America/Rosario","value":"America/Rosario"},{"name":"America/Santa_Isabel","value":"America/Santa_Isabel"},{"name":"America/Santarem","value":"America/Santarem"},{"name":"America/Santiago","value":"America/Santiago"},{"name":"America/Santo_Domingo","value":"America/Santo_Domingo"},{"name":"America/Sao_Paulo","value":"America/Sao_Paulo"},{"name":"America/Scoresbysund","value":"America/Scoresbysund"},{"name":"America/Shiprock","value":"America/Shiprock"},{"name":"America/Sitka","value":"America/Sitka"},{"name":"America/St_Barthelemy","value":"America/St_Barthelemy"},{"name":"America/St_Johns","value":"America/St_Johns"},{"name":"America/St_Kitts","value":"America/St_Kitts"},{"name":"America/St_Lucia","value":"America/St_Lucia"},{"name":"America/St_Thomas","value":"America/St_Thomas"},{"name":"America/St_Vincent","value":"America/St_Vincent"},{"name":"America/Swift_Current","value":"America/Swift_Current"},{"name":"America/Tegucigalpa","value":"America/Tegucigalpa"},{"name":"America/Thule","value":"America/Thule"},{"name":"America/Thunder_Bay","value":"America/Thunder_Bay"},{"name":"America/Tijuana","value":"America/Tijuana"},{"name":"America/Toronto","value":"America/Toronto"},{"name":"America/Tortola","value":"America/Tortola"},{"name":"America/Vancouver","value":"America/Vancouver"},{"name":"America/Virgin","value":"America/Virgin"},{"name":"America/Whitehorse","value":"America/Whitehorse"},{"name":"America/Winnipeg","value":"America/Winnipeg"},{"name":"America/Yakutat","value":"America/Yakutat"},{"name":"America/Yellowknife","value":"America/Yellowknife"},{"name":"Antarctica/Casey","value":"Antarctica/Casey"},{"name":"Antarctica/Davis","value":"Antarctica/Davis"},{"name":"Antarctica/DumontDUrville","value":"Antarctica/DumontDUrville"},{"name":"Antarctica/Macquarie","value":"Antarctica/Macquarie"},{"name":"Antarctica/Mawson","value":"Antarctica/Mawson"},{"name":"Antarctica/McMurdo","value":"Antarctica/McMurdo"},{"name":"Antarctica/Palmer","value":"Antarctica/Palmer"},{"name":"Antarctica/Rothera","value":"Antarctica/Rothera"},{"name":"Antarctica/South_Pole","value":"Antarctica/South_Pole"},{"name":"Antarctica/Syowa","value":"Antarctica/Syowa"},{"name":"Antarctica/Troll","value":"Antarctica/Troll"},{"name":"Antarctica/Vostok","value":"Antarctica/Vostok"},{"name":"Arctic/Longyearbyen","value":"Arctic/Longyearbyen"},{"name":"Asia/Aden","value":"Asia/Aden"},{"name":"Asia/Almaty","value":"Asia/Almaty"},{"name":"Asia/Amman","value":"Asia/Amman"},{"name":"Asia/Anadyr","value":"Asia/Anadyr"},{"name":"Asia/Aqtau","value":"Asia/Aqtau"},{"name":"Asia/Aqtobe","value":"Asia/Aqtobe"},{"name":"Asia/Ashgabat","value":"Asia/Ashgabat"},{"name":"Asia/Ashkhabad","value":"Asia/Ashkhabad"},{"name":"Asia/Atyrau","value":"Asia/Atyrau"},{"name":"Asia/Baghdad","value":"Asia/Baghdad"},{"name":"Asia/Bahrain","value":"Asia/Bahrain"},{"name":"Asia/Baku","value":"Asia/Baku"},{"name":"Asia/Bangkok","value":"Asia/Bangkok"},{"name":"Asia/Barnaul","value":"Asia/Barnaul"},{"name":"Asia/Beirut","value":"Asia/Beirut"},{"name":"Asia/Bishkek","value":"Asia/Bishkek"},{"name":"Asia/Brunei","value":"Asia/Brunei"},{"name":"Asia/Calcutta","value":"Asia/Calcutta"},{"name":"Asia/Chita","value":"Asia/Chita"},{"name":"Asia/Choibalsan","value":"Asia/Choibalsan"},{"name":"Asia/Chongqing","value":"Asia/Chongqing"},{"name":"Asia/Chungking","value":"Asia/Chungking"},{"name":"Asia/Colombo","value":"Asia/Colombo"},{"name":"Asia/Dacca","value":"Asia/Dacca"},{"name":"Asia/Damascus","value":"Asia/Damascus"},{"name":"Asia/Dhaka","value":"Asia/Dhaka"},{"name":"Asia/Dili","value":"Asia/Dili"},{"name":"Asia/Dubai","value":"Asia/Dubai"},{"name":"Asia/Dushanbe","value":"Asia/Dushanbe"},{"name":"Asia/Famagusta","value":"Asia/Famagusta"},{"name":"Asia/Gaza","value":"Asia/Gaza"},{"name":"Asia/Harbin","value":"Asia/Harbin"},{"name":"Asia/Hebron","value":"Asia/Hebron"},{"name":"Asia/Ho_Chi_Minh","value":"Asia/Ho_Chi_Minh"},{"name":"Asia/Hong_Kong","value":"Asia/Hong_Kong"},{"name":"Asia/Hovd","value":"Asia/Hovd"},{"name":"Asia/Irkutsk","value":"Asia/Irkutsk"},{"name":"Asia/Istanbul","value":"Asia/Istanbul"},{"name":"Asia/Jakarta","value":"Asia/Jakarta"},{"name":"Asia/Jayapura","value":"Asia/Jayapura"},{"name":"Asia/Jerusalem","value":"Asia/Jerusalem"},{"name":"Asia/Kabul","value":"Asia/Kabul"},{"name":"Asia/Kamchatka","value":"Asia/Kamchatka"},{"name":"Asia/Karachi","value":"Asia/Karachi"},{"name":"Asia/Kashgar","value":"Asia/Kashgar"},{"name":"Asia/Kathmandu","value":"Asia/Kathmandu"},{"name":"Asia/Katmandu","value":"Asia/Katmandu"},{"name":"Asia/Khandyga","value":"Asia/Khandyga"},{"name":"Asia/Kolkata","value":"Asia/Kolkata"},{"name":"Asia/Krasnoyarsk","value":"Asia/Krasnoyarsk"},{"name":"Asia/Kuala_Lumpur","value":"Asia/Kuala_Lumpur"},{"name":"Asia/Kuching","value":"Asia/Kuching"},{"name":"Asia/Kuwait","value":"Asia/Kuwait"},{"name":"Asia/Macao","value":"Asia/Macao"},{"name":"Asia/Macau","value":"Asia/Macau"},{"name":"Asia/Magadan","value":"Asia/Magadan"},{"name":"Asia/Makassar","value":"Asia/Makassar"},{"name":"Asia/Manila","value":"Asia/Manila"},{"name":"Asia/Muscat","value":"Asia/Muscat"},{"name":"Asia/Nicosia","value":"Asia/Nicosia"},{"name":"Asia/Novokuznetsk","value":"Asia/Novokuznetsk"},{"name":"Asia/Novosibirsk","value":"Asia/Novosibirsk"},{"name":"Asia/Omsk","value":"Asia/Omsk"},{"name":"Asia/Oral","value":"Asia/Oral"},{"name":"Asia/Phnom_Penh","value":"Asia/Phnom_Penh"},{"name":"Asia/Pontianak","value":"Asia/Pontianak"},{"name":"Asia/Pyongyang","value":"Asia/Pyongyang"},{"name":"Asia/Qatar","value":"Asia/Qatar"},{"name":"Asia/Qostanay","value":"Asia/Qostanay"},{"name":"Asia/Qyzylorda","value":"Asia/Qyzylorda"},{"name":"Asia/Rangoon","value":"Asia/Rangoon"},{"name":"Asia/Riyadh","value":"Asia/Riyadh"},{"name":"Asia/Saigon","value":"Asia/Saigon"},{"name":"Asia/Sakhalin","value":"Asia/Sakhalin"},{"name":"Asia/Samarkand","value":"Asia/Samarkand"},{"name":"Asia/Seoul","value":"Asia/Seoul"},{"name":"Asia/Shanghai","value":"Asia/Shanghai"},{"name":"Asia/Singapore","value":"Asia/Singapore"},{"name":"Asia/Srednekolymsk","value":"Asia/Srednekolymsk"},{"name":"Asia/Taipei","value":"Asia/Taipei"},{"name":"Asia/Tashkent","value":"Asia/Tashkent"},{"name":"Asia/Tbilisi","value":"Asia/Tbilisi"},{"name":"Asia/Tehran","value":"Asia/Tehran"},{"name":"Asia/Tel_Aviv","value":"Asia/Tel_Aviv"},{"name":"Asia/Thimbu","value":"Asia/Thimbu"},{"name":"Asia/Thimphu","value":"Asia/Thimphu"},{"name":"Asia/Tokyo","value":"Asia/Tokyo"},{"name":"Asia/Tomsk","value":"Asia/Tomsk"},{"name":"Asia/Ujung_Pandang","value":"Asia/Ujung_Pandang"},{"name":"Asia/Ulaanbaatar","value":"Asia/Ulaanbaatar"},{"name":"Asia/Ulan_Bator","value":"Asia/Ulan_Bator"},{"name":"Asia/Urumqi","value":"Asia/Urumqi"},{"name":"Asia/Ust-Nera","value":"Asia/Ust-Nera"},{"name":"Asia/Vientiane","value":"Asia/Vientiane"},{"name":"Asia/Vladivostok","value":"Asia/Vladivostok"},{"name":"Asia/Yakutsk","value":"Asia/Yakutsk"},{"name":"Asia/Yangon","value":"Asia/Yangon"},{"name":"Asia/Yekaterinburg","value":"Asia/Yekaterinburg"},{"name":"Asia/Yerevan","value":"Asia/Yerevan"},{"name":"Atlantic/Azores","value":"Atlantic/Azores"},{"name":"Atlantic/Bermuda","value":"Atlantic/Bermuda"},{"name":"Atlantic/Canary","value":"Atlantic/Canary"},{"name":"Atlantic/Cape_Verde","value":"Atlantic/Cape_Verde"},{"name":"Atlantic/Faeroe","value":"Atlantic/Faeroe"},{"name":"Atlantic/Faroe","value":"Atlantic/Faroe"},{"name":"Atlantic/Jan_Mayen","value":"Atlantic/Jan_Mayen"},{"name":"Atlantic/Madeira","value":"Atlantic/Madeira"},{"name":"Atlantic/Reykjavik","value":"Atlantic/Reykjavik"},{"name":"Atlantic/South_Georgia","value":"Atlantic/South_Georgia"},{"name":"Atlantic/St_Helena","value":"Atlantic/St_Helena"},{"name":"Atlantic/Stanley","value":"Atlantic/Stanley"},{"name":"Australia/ACT","value":"Australia/ACT"},{"name":"Australia/Adelaide","value":"Australia/Adelaide"},{"name":"Australia/Brisbane","value":"Australia/Brisbane"},{"name":"Australia/Broken_Hill","value":"Australia/Broken_Hill"},{"name":"Australia/Canberra","value":"Australia/Canberra"},{"name":"Australia/Currie","value":"Australia/Currie"},{"name":"Australia/Darwin","value":"Australia/Darwin"},{"name":"Australia/Eucla","value":"Australia/Eucla"},{"name":"Australia/Hobart","value":"Australia/Hobart"},{"name":"Australia/LHI","value":"Australia/LHI"},{"name":"Australia/Lindeman","value":"Australia/Lindeman"},{"name":"Australia/Lord_Howe","value":"Australia/Lord_Howe"},{"name":"Australia/Melbourne","value":"Australia/Melbourne"},{"name":"Australia/NSW","value":"Australia/NSW"},{"name":"Australia/North","value":"Australia/North"},{"name":"Australia/Perth","value":"Australia/Perth"},{"name":"Australia/Queensland","value":"Australia/Queensland"},{"name":"Australia/South","value":"Australia/South"},{"name":"Australia/Sydney","value":"Australia/Sydney"},{"name":"Australia/Tasmania","value":"Australia/Tasmania"},{"name":"Australia/Victoria","value":"Australia/Victoria"},{"name":"Australia/West","value":"Australia/West"},{"name":"Australia/Yancowinna","value":"Australia/Yancowinna"},{"name":"Brazil/Acre","value":"Brazil/Acre"},{"name":"Brazil/DeNoronha","value":"Brazil/DeNoronha"},{"name":"Brazil/East","value":"Brazil/East"},{"name":"Brazil/West","value":"Brazil/West"},{"name":"CET","value":"CET"},{"name":"CST6CDT","value":"CST6CDT"},{"name":"Canada/Atlantic","value":"Canada/Atlantic"},{"name":"Canada/Central","value":"Canada/Central"},{"name":"Canada/Eastern","value":"Canada/Eastern"},{"name":"Canada/Mountain","value":"Canada/Mountain"},{"name":"Canada/Newfoundland","value":"Canada/Newfoundland"},{"name":"Canada/Pacific","value":"Canada/Pacific"},{"name":"Canada/Saskatchewan","value":"Canada/Saskatchewan"},{"name":"Canada/Yukon","value":"Canada/Yukon"},{"name":"Chile/Continental","value":"Chile/Continental"},{"name":"Chile/EasterIsland","value":"Chile/EasterIsland"},{"name":"Cuba","value":"Cuba"},{"name":"EET","value":"EET"},{"name":"EST","value":"EST"},{"name":"EST5EDT","value":"EST5EDT"},{"name":"Egypt","value":"Egypt"},{"name":"Eire","value":"Eire"},{"name":"Etc/GMT","value":"Etc/GMT"},{"name":"Etc/GMT+0","value":"Etc/GMT+0"},{"name":"Etc/GMT+1","value":"Etc/GMT+1"},{"name":"Etc/GMT+10","value":"Etc/GMT+10"},{"name":"Etc/GMT+11","value":"Etc/GMT+11"},{"name":"Etc/GMT+12","value":"Etc/GMT+12"},{"name":"Etc/GMT+2","value":"Etc/GMT+2"},{"name":"Etc/GMT+3","value":"Etc/GMT+3"},{"name":"Etc/GMT+4","value":"Etc/GMT+4"},{"name":"Etc/GMT+5","value":"Etc/GMT+5"},{"name":"Etc/GMT+6","value":"Etc/GMT+6"},{"name":"Etc/GMT+7","value":"Etc/GMT+7"},{"name":"Etc/GMT+8","value":"Etc/GMT+8"},{"name":"Etc/GMT+9","value":"Etc/GMT+9"},{"name":"Etc/GMT-0","value":"Etc/GMT-0"},{"name":"Etc/GMT-1","value":"Etc/GMT-1"},{"name":"Etc/GMT-10","value":"Etc/GMT-10"},{"name":"Etc/GMT-11","value":"Etc/GMT-11"},{"name":"Etc/GMT-12","value":"Etc/GMT-12"},{"name":"Etc/GMT-13","value":"Etc/GMT-13"},{"name":"Etc/GMT-14","value":"Etc/GMT-14"},{"name":"Etc/GMT-2","value":"Etc/GMT-2"},{"name":"Etc/GMT-3","value":"Etc/GMT-3"},{"name":"Etc/GMT-4","value":"Etc/GMT-4"},{"name":"Etc/GMT-5","value":"Etc/GMT-5"},{"name":"Etc/GMT-6","value":"Etc/GMT-6"},{"name":"Etc/GMT-7","value":"Etc/GMT-7"},{"name":"Etc/GMT-8","value":"Etc/GMT-8"},{"name":"Etc/GMT-9","value":"Etc/GMT-9"},{"name":"Etc/GMT0","value":"Etc/GMT0"},{"name":"Etc/Greenwich","value":"Etc/Greenwich"},{"name":"Etc/UCT","value":"Etc/UCT"},{"name":"Etc/UTC","value":"Etc/UTC"},{"name":"Etc/Universal","value":"Etc/Universal"},{"name":"Etc/Zulu","value":"Etc/Zulu"},{"name":"Europe/Amsterdam","value":"Europe/Amsterdam"},{"name":"Europe/Andorra","value":"Europe/Andorra"},{"name":"Europe/Astrakhan","value":"Europe/Astrakhan"},{"name":"Europe/Athens","value":"Europe/Athens"},{"name":"Europe/Belfast","value":"Europe/Belfast"},{"name":"Europe/Belgrade","value":"Europe/Belgrade"},{"name":"Europe/Berlin","value":"Europe/Berlin"},{"name":"Europe/Bratislava","value":"Europe/Bratislava"},{"name":"Europe/Brussels","value":"Europe/Brussels"},{"name":"Europe/Bucharest","value":"Europe/Bucharest"},{"name":"Europe/Budapest","value":"Europe/Budapest"},{"name":"Europe/Busingen","value":"Europe/Busingen"},{"name":"Europe/Chisinau","value":"Europe/Chisinau"},{"name":"Europe/Copenhagen","value":"Europe/Copenhagen"},{"name":"Europe/Dublin","value":"Europe/Dublin"},{"name":"Europe/Gibraltar","value":"Europe/Gibraltar"},{"name":"Europe/Guernsey","value":"Europe/Guernsey"},{"name":"Europe/Helsinki","value":"Europe/Helsinki"},{"name":"Europe/Isle_of_Man","value":"Europe/Isle_of_Man"},{"name":"Europe/Istanbul","value":"Europe/Istanbul"},{"name":"Europe/Jersey","value":"Europe/Jersey"},{"name":"Europe/Kaliningrad","value":"Europe/Kaliningrad"},{"name":"Europe/Kiev","value":"Europe/Kiev"},{"name":"Europe/Kirov","value":"Europe/Kirov"},{"name":"Europe/Kyiv","value":"Europe/Kyiv"},{"name":"Europe/Lisbon","value":"Europe/Lisbon"},{"name":"Europe/Ljubljana","value":"Europe/Ljubljana"},{"name":"Europe/London","value":"Europe/London"},{"name":"Europe/Luxembourg","value":"Europe/Luxembourg"},{"name":"Europe/Madrid","value":"Europe/Madrid"},{"name":"Europe/Malta","value":"Europe/Malta"},{"name":"Europe/Mariehamn","value":"Europe/Mariehamn"},{"name":"Europe/Minsk","value":"Europe/Minsk"},{"name":"Europe/Monaco","value":"Europe/Monaco"},{"name":"Europe/Moscow","value":"Europe/Moscow"},{"name":"Europe/Nicosia","value":"Europe/Nicosia"},{"name":"Europe/Oslo","value":"Europe/Oslo"},{"name":"Europe/Paris","value":"Europe/Paris"},{"name":"Europe/Podgorica","value":"Europe/Podgorica"},{"name":"Europe/Prague","value":"Europe/Prague"},{"name":"Europe/Riga","value":"Europe/Riga"},{"name":"Europe/Rome","value":"Europe/Rome"},{"name":"Europe/Samara","value":"Europe/Samara"},{"name":"Europe/San_Marino","value":"Europe/San_Marino"},{"name":"Europe/Sarajevo","value":"Europe/Sarajevo"},{"name":"Europe/Saratov","value":"Europe/Saratov"},{"name":"Europe/Simferopol","value":"Europe/Simferopol"},{"name":"Europe/Skopje","value":"Europe/Skopje"},{"name":"Europe/Sofia","value":"Europe/Sofia"},{"name":"Europe/Stockholm","value":"Europe/Stockholm"},{"name":"Europe/Tallinn","value":"Europe/Tallinn"},{"name":"Europe/Tirane","value":"Europe/Tirane"},{"name":"Europe/Tiraspol","value":"Europe/Tiraspol"},{"name":"Europe/Ulyanovsk","value":"Europe/Ulyanovsk"},{"name":"Europe/Uzhgorod","value":"Europe/Uzhgorod"},{"name":"Europe/Vaduz","value":"Europe/Vaduz"},{"name":"Europe/Vatican","value":"Europe/Vatican"},{"name":"Europe/Vienna","value":"Europe/Vienna"},{"name":"Europe/Vilnius","value":"Europe/Vilnius"},{"name":"Europe/Volgograd","value":"Europe/Volgograd"},{"name":"Europe/Warsaw","value":"Europe/Warsaw"},{"name":"Europe/Zagreb","value":"Europe/Zagreb"},{"name":"Europe/Zaporozhye","value":"Europe/Zaporozhye"},{"name":"Europe/Zurich","value":"Europe/Zurich"},{"name":"GB","value":"GB"},{"name":"GB-Eire","value":"GB-Eire"},{"name":"GMT","value":"GMT"},{"name":"GMT+0","value":"GMT+0"},{"name":"GMT-0","value":"GMT-0"},{"name":"GMT0","value":"GMT0"},{"name":"Greenwich","value":"Greenwich"},{"name":"HST","value":"HST"},{"name":"Hongkong","value":"Hongkong"},{"name":"Iceland","value":"Iceland"},{"name":"Indian/Antananarivo","value":"Indian/Antananarivo"},{"name":"Indian/Chagos","value":"Indian/Chagos"},{"name":"Indian/Christmas","value":"Indian/Christmas"},{"name":"Indian/Cocos","value":"Indian/Cocos"},{"name":"Indian/Comoro","value":"Indian/Comoro"},{"name":"Indian/Kerguelen","value":"Indian/Kerguelen"},{"name":"Indian/Mahe","value":"Indian/Mahe"},{"name":"Indian/Maldives","value":"Indian/Maldives"},{"name":"Indian/Mauritius","value":"Indian/Mauritius"},{"name":"Indian/Mayotte","value":"Indian/Mayotte"},{"name":"Indian/Reunion","value":"Indian/Reunion"},{"name":"Iran","value":"Iran"},{"name":"Israel","value":"Israel"},{"name":"Jamaica","value":"Jamaica"},{"name":"Japan","value":"Japan"},{"name":"Kwajalein","value":"Kwajalein"},{"name":"Libya","value":"Libya"},{"name":"MET","value":"MET"},{"name":"MST","value":"MST"},{"name":"MST7MDT","value":"MST7MDT"},{"name":"Mexico/BajaNorte","value":"Mexico/BajaNorte"},{"name":"Mexico/BajaSur","value":"Mexico/BajaSur"},{"name":"Mexico/General","value":"Mexico/General"},{"name":"NZ","value":"NZ"},{"name":"NZ-CHAT","value":"NZ-CHAT"},{"name":"Navajo","value":"Navajo"},{"name":"PRC","value":"PRC"},{"name":"PST8PDT","value":"PST8PDT"},{"name":"Pacific/Apia","value":"Pacific/Apia"},{"name":"Pacific/Auckland","value":"Pacific/Auckland"},{"name":"Pacific/Bougainville","value":"Pacific/Bougainville"},{"name":"Pacific/Chatham","value":"Pacific/Chatham"},{"name":"Pacific/Chuuk","value":"Pacific/Chuuk"},{"name":"Pacific/Easter","value":"Pacific/Easter"},{"name":"Pacific/Efate","value":"Pacific/Efate"},{"name":"Pacific/Enderbury","value":"Pacific/Enderbury"},{"name":"Pacific/Fakaofo","value":"Pacific/Fakaofo"},{"name":"Pacific/Fiji","value":"Pacific/Fiji"},{"name":"Pacific/Funafuti","value":"Pacific/Funafuti"},{"name":"Pacific/Galapagos","value":"Pacific/Galapagos"},{"name":"Pacific/Gambier","value":"Pacific/Gambier"},{"name":"Pacific/Guadalcanal","value":"Pacific/Guadalcanal"},{"name":"Pacific/Guam","value":"Pacific/Guam"},{"name":"Pacific/Honolulu","value":"Pacific/Honolulu"},{"name":"Pacific/Johnston","value":"Pacific/Johnston"},{"name":"Pacific/Kanton","value":"Pacific/Kanton"},{"name":"Pacific/Kiritimati","value":"Pacific/Kiritimati"},{"name":"Pacific/Kosrae","value":"Pacific/Kosrae"},{"name":"Pacific/Kwajalein","value":"Pacific/Kwajalein"},{"name":"Pacific/Majuro","value":"Pacific/Majuro"},{"name":"Pacific/Marquesas","value":"Pacific/Marquesas"},{"name":"Pacific/Midway","value":"Pacific/Midway"},{"name":"Pacific/Nauru","value":"Pacific/Nauru"},{"name":"Pacific/Niue","value":"Pacific/Niue"},{"name":"Pacific/Norfolk","value":"Pacific/Norfolk"},{"name":"Pacific/Noumea","value":"Pacific/Noumea"},{"name":"Pacific/Pago_Pago","value":"Pacific/Pago_Pago"},{"name":"Pacific/Palau","value":"Pacific/Palau"},{"name":"Pacific/Pitcairn","value":"Pacific/Pitcairn"},{"name":"Pacific/Pohnpei","value":"Pacific/Pohnpei"},{"name":"Pacific/Ponape","value":"Pacific/Ponape"},{"name":"Pacific/Port_Moresby","value":"Pacific/Port_Moresby"},{"name":"Pacific/Rarotonga","value":"Pacific/Rarotonga"},{"name":"Pacific/Saipan","value":"Pacific/Saipan"},{"name":"Pacific/Samoa","value":"Pacific/Samoa"},{"name":"Pacific/Tahiti","value":"Pacific/Tahiti"},{"name":"Pacific/Tarawa","value":"Pacific/Tarawa"},{"name":"Pacific/Tongatapu","value":"Pacific/Tongatapu"},{"name":"Pacific/Truk","value":"Pacific/Truk"},{"name":"Pacific/Wake","value":"Pacific/Wake"},{"name":"Pacific/Wallis","value":"Pacific/Wallis"},{"name":"Pacific/Yap","value":"Pacific/Yap"},{"name":"Poland","value":"Poland"},{"name":"Portugal","value":"Portugal"},{"name":"ROC","value":"ROC"},{"name":"ROK","value":"ROK"},{"name":"Singapore","value":"Singapore"},{"name":"Turkey","value":"Turkey"},{"name":"UCT","value":"UCT"},{"name":"US/Alaska","value":"US/Alaska"},{"name":"US/Aleutian","value":"US/Aleutian"},{"name":"US/Arizona","value":"US/Arizona"},{"name":"US/Central","value":"US/Central"},{"name":"US/East-Indiana","value":"US/East-Indiana"},{"name":"US/Eastern","value":"US/Eastern"},{"name":"US/Hawaii","value":"US/Hawaii"},{"name":"US/Indiana-Starke","value":"US/Indiana-Starke"},{"name":"US/Michigan","value":"US/Michigan"},{"name":"US/Mountain","value":"US/Mountain"},{"name":"US/Pacific","value":"US/Pacific"},{"name":"US/Samoa","value":"US/Samoa"},{"name":"UTC","value":"UTC"},{"name":"Universal","value":"Universal"},{"name":"W-SU","value":"W-SU"},{"name":"WET","value":"WET"},{"name":"Zulu","value":"Zulu"}]},{"displayName":"Type","name":"type","type":"options","default":"singleInstance","options":[{"name":"Single Instance","value":"singleInstance"},{"name":"Occurrence","value":"occurrence"},{"name":"Exception","value":"exception"},{"name":"Series Master","value":"seriesMaster"}]}],"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["delete"]}}},{"displayName":"Event","name":"eventId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["calendarId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a event...","typeOptions":{"searchListMethod":"searchEvents","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/calendar/item/AAMkADlhOTA0M...UAAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Event URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["delete"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["get"]}}},{"displayName":"Event","name":"eventId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["calendarId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a event...","typeOptions":{"searchListMethod":"searchEvents","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/calendar/item/AAMkADlhOTA0M...UAAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Event URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["event"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["event"],"operation":["get"]}},"options":[{"name":"allowNewTimeProposals","value":"allowNewTimeProposals"},{"name":"attendees","value":"attendees"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"changeKey","value":"changeKey"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"end","value":"end"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"hideAttendees","value":"hideAttendees"},{"name":"iCalUId","value":"iCalUId"},{"name":"importance","value":"importance"},{"name":"isAllDay","value":"isAllDay"},{"name":"isCancelled","value":"isCancelled"},{"name":"isDraft","value":"isDraft"},{"name":"isOnlineMeeting","value":"isOnlineMeeting"},{"name":"isOrganizer","value":"isOrganizer"},{"name":"isReminderOn","value":"isReminderOn"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"location","value":"location"},{"name":"locations","value":"locations"},{"name":"onlineMeeting","value":"onlineMeeting"},{"name":"onlineMeetingProvider","value":"onlineMeetingProvider"},{"name":"onlineMeetingUrl","value":"onlineMeetingUrl"},{"name":"organizer","value":"organizer"},{"name":"originalEndTimeZone","value":"originalEndTimeZone"},{"name":"originalStartTimeZone","value":"originalStartTimeZone"},{"name":"recurrence","value":"recurrence"},{"name":"reminderMinutesBeforeStart","value":"reminderMinutesBeforeStart"},{"name":"responseRequested","value":"responseRequested"},{"name":"responseStatus","value":"responseStatus"},{"name":"sensitivity","value":"sensitivity"},{"name":"seriesMasterId","value":"seriesMasterId"},{"name":"showAs","value":"showAs"},{"name":"start","value":"start"},{"name":"subject","value":"subject"},{"name":"transactionId","value":"transactionId"},{"name":"type","value":"type"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"From All Calendars","name":"fromAllCalendars","type":"boolean","default":true,"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"fromAllCalendars":[false],"resource":["event"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["event"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["event"],"operation":["getAll"]}},"options":[{"name":"allowNewTimeProposals","value":"allowNewTimeProposals"},{"name":"attendees","value":"attendees"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"changeKey","value":"changeKey"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"end","value":"end"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"hideAttendees","value":"hideAttendees"},{"name":"iCalUId","value":"iCalUId"},{"name":"importance","value":"importance"},{"name":"isAllDay","value":"isAllDay"},{"name":"isCancelled","value":"isCancelled"},{"name":"isDraft","value":"isDraft"},{"name":"isOnlineMeeting","value":"isOnlineMeeting"},{"name":"isOrganizer","value":"isOrganizer"},{"name":"isReminderOn","value":"isReminderOn"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"location","value":"location"},{"name":"locations","value":"locations"},{"name":"onlineMeeting","value":"onlineMeeting"},{"name":"onlineMeetingProvider","value":"onlineMeetingProvider"},{"name":"onlineMeetingUrl","value":"onlineMeetingUrl"},{"name":"organizer","value":"organizer"},{"name":"originalEndTimeZone","value":"originalEndTimeZone"},{"name":"originalStartTimeZone","value":"originalStartTimeZone"},{"name":"recurrence","value":"recurrence"},{"name":"reminderMinutesBeforeStart","value":"reminderMinutesBeforeStart"},{"name":"responseRequested","value":"responseRequested"},{"name":"responseStatus","value":"responseStatus"},{"name":"sensitivity","value":"sensitivity"},{"name":"seriesMasterId","value":"seriesMasterId"},{"name":"showAs","value":"showAs"},{"name":"start","value":"start"},{"name":"subject","value":"subject"},{"name":"transactionId","value":"transactionId"},{"name":"type","value":"type"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. contains(subject,'Hello')","hint":"Search query to filter events. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."}],"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["update"]}}},{"displayName":"Event","name":"eventId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["calendarId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a event...","typeOptions":{"searchListMethod":"searchEvents","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/calendar/item/AAMkADlhOTA0M...UAAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Event URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["update"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Categories","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"Description","name":"body","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Description Preview","name":"bodyPreview","type":"string","default":""},{"displayName":"End","name":"end","type":"dateTime","default":""},{"displayName":"Hide Attendees","name":"hideAttendees","type":"boolean","default":false,"description":"Whether to allow each attendee to only see themselves in the meeting request and meeting tracking list"},{"displayName":"Importance","name":"importance","type":"options","default":"low","options":[{"name":"Low","value":"low"},{"name":"Normal","value":"normal"},{"name":"High","value":"high"}]},{"displayName":"Is All Day","name":"isAllDay","type":"boolean","default":false},{"displayName":"Is Cancelled","name":"isCancelled","type":"boolean","default":false},{"displayName":"Is Draft","name":"isDraft","type":"boolean","default":false},{"displayName":"Is Online Meeting","name":"isOnlineMeeting","type":"boolean","default":true},{"displayName":"Sensitivity","name":"sensitivity","type":"options","default":"normal","options":[{"name":"Normal","value":"normal"},{"name":"Personal","value":"personal"},{"name":"Private","value":"private"},{"name":"Confidential","value":"confidential"}]},{"displayName":"Show As","name":"showAs","type":"options","default":"free","options":[{"name":"Busy","value":"busy"},{"name":"Free","value":"free"},{"name":"Oof","value":"oof"},{"name":"Tentative","value":"tentative"},{"name":"Working Elsewhere","value":"workingElsewhere"}]},{"displayName":"Start","name":"start","type":"dateTime","default":""},{"displayName":"Timezone","name":"timeZone","type":"string","default":""},{"displayName":"Title","name":"subject","type":"string","default":""},{"displayName":"Type","name":"type","type":"options","default":"singleInstance","options":[{"name":"Single Instance","value":"singleInstance"},{"name":"Occurrence","value":"occurrence"},{"name":"Exception","value":"exception"},{"name":"Series Master","value":"seriesMaster"}]}],"displayOptions":{"show":{"resource":["event"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folder"]}},"options":[{"name":"Create","value":"create","description":"Create a mail folder in the root folder of the user's mailbox","action":"Create a folder"},{"name":"Delete","value":"delete","description":"Delete a folder","action":"Delete a folder"},{"name":"Get","value":"get","description":"Retrieve a folder","action":"Get a folder"},{"name":"Get Many","value":"getAll","description":"Get many folders","action":"Get many folders"},{"name":"Update","value":"update","description":"Update a folder","action":"Update a folder"}],"default":"create"},{"displayName":"Name","name":"displayName","description":"Name of the folder","type":"string","required":true,"default":"","placeholder":"e.g. My Folder","displayOptions":{"show":{"resource":["folder"],"operation":["create"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Parent Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":false,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}]}],"displayOptions":{"show":{"resource":["folder"],"operation":["create"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folder"],"operation":["delete"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folder"],"operation":["get"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","options":[{"name":"Child Folder Count","value":"childFolderCount"},{"name":"Display Name","value":"displayName"},{"name":"Is Hidden","value":"isHidden"},{"name":"Parent Folder ID","value":"parentFolderId"},{"name":"Total Item Count","value":"totalItemCount"},{"name":"Unread Item Count","value":"unreadItemCount"}],"default":[]}],"displayOptions":{"show":{"resource":["folder"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["folder"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["folder"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"filter","type":"string","default":"","placeholder":"e.g. displayName eq 'My Folder'","hint":"Search query to filter folders. <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">More info</a>."}],"displayOptions":{"show":{"resource":["folder"],"operation":["getAll"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","options":[{"name":"Child Folder Count","value":"childFolderCount"},{"name":"Display Name","value":"displayName"},{"name":"Is Hidden","value":"isHidden"},{"name":"Parent Folder ID","value":"parentFolderId"},{"name":"Total Item Count","value":"totalItemCount"},{"name":"Unread Item Count","value":"unreadItemCount"}],"default":[]},{"displayName":"Include Child Folders","name":"includeChildFolders","type":"boolean","default":false,"description":"Whether to include child folders in the response"},{"displayName":"Parent Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":false,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"description":"The folder you want to search in"}],"displayOptions":{"show":{"resource":["folder"],"operation":["getAll"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folder"],"operation":["update"]}}},{"displayName":"Name","name":"displayName","description":"Name of the folder","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["folder"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folderMessage"]}},"options":[{"name":"Get Many","value":"getAll","description":"Retrieves the messages in a folder","action":"Get many folder messages"}],"default":"getAll"},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["folderMessage"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["folderMessage"],"operation":["getAll"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Fetching a lot of messages may take a long time. Consider using filters to speed things up","name":"filtersNotice","type":"notice","default":"","displayOptions":{"show":{"returnAll":[true],"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Filters","name":"filtersUI","type":"fixedCollection","placeholder":"Add Filters","default":{},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Filter By","name":"filterBy","type":"options","options":[{"name":"Filters","value":"filters"},{"name":"Search","value":"search"}],"default":"filters"},{"displayName":"Search","name":"search","type":"string","default":"","placeholder":"e.g. automation","description":"Only return messages that contains search term. Without specific message properties, the search is carried out on the default search properties of from, subject, and body. <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#search-parameter target=\"_blank\">More info</a>.","displayOptions":{"show":{"filterBy":["search"]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"filterBy":["filters"]}},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. isRead eq false","hint":"Search query to filter messages. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Has Attachments","name":"hasAttachments","type":"boolean","default":false},{"displayName":"Read Status","name":"readStatus","type":"options","default":"unread","hint":"Filter messages by whether they have been read or not","options":[{"name":"Unread and read messages","value":"both"},{"name":"Unread messages only","value":"unread"},{"name":"Read messages only","value":"read"}]},{"displayName":"Received After","name":"receivedAfter","type":"dateTime","default":"","description":"Get all messages received after the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Received Before","name":"receivedBefore","type":"dateTime","default":"","description":"Get all messages received before the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Sender","name":"sender","type":"string","default":"","description":"Sender name or email to filter by"}]}]}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["message"]}},"options":[{"name":"Delete","value":"delete","description":"Delete a message","action":"Delete a message"},{"name":"Get","value":"get","description":"Retrieve a single message","action":"Get a message"},{"name":"Get Many","value":"getAll","description":"List and search messages","action":"Get many messages"},{"name":"Move","value":"move","description":"Move a message to a folder","action":"Move a message"},{"name":"Reply","value":"reply","description":"Create a reply to a message","action":"Reply to a message"},{"name":"Send","value":"send","description":"Send a message","action":"Send a message"},{"name":"Update","value":"update","description":"Update a message","action":"Update a message"}],"default":"send"},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["delete"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["message"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["message"],"operation":["get"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"},{"displayName":"Get MIME Content","name":"getMimeContent","type":"fixedCollection","default":{"values":{"binaryPropertyName":"data"}},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Put Output in Field","name":"binaryPropertyName","type":"string","default":"","hint":"The name of the output field to put the binary file data in"},{"displayName":"File Name","name":"outputFileName","type":"string","placeholder":"message","default":"","description":"Optional name of the output file, if not set message ID is used"}]}]}],"displayOptions":{"show":{"resource":["message"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["message"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["message"],"operation":["getAll"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Fetching a lot of messages may take a long time. Consider using filters to speed things up","name":"filtersNotice","type":"notice","default":"","displayOptions":{"show":{"returnAll":[true],"resource":["message"],"operation":["getAll"]}}},{"displayName":"Filters","name":"filtersUI","type":"fixedCollection","placeholder":"Add Filters","default":{},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Filter By","name":"filterBy","type":"options","options":[{"name":"Filters","value":"filters"},{"name":"Search","value":"search"}],"default":"filters"},{"displayName":"Search","name":"search","type":"string","default":"","placeholder":"e.g. automation","description":"Only return messages that contains search term. Without specific message properties, the search is carried out on the default search properties of from, subject, and body. <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#search-parameter target=\"_blank\">More info</a>.","displayOptions":{"show":{"filterBy":["search"]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"filterBy":["filters"]}},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. isRead eq false","hint":"Search query to filter messages. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Has Attachments","name":"hasAttachments","type":"boolean","default":false},{"displayName":"Folders to Exclude","name":"foldersToExclude","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getFolders"},"default":[],"description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Folders to Include","name":"foldersToInclude","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getFolders"},"default":[],"description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Read Status","name":"readStatus","type":"options","default":"unread","hint":"Filter messages by whether they have been read or not","options":[{"name":"Unread and read messages","value":"both"},{"name":"Unread messages only","value":"unread"},{"name":"Read messages only","value":"read"}]},{"displayName":"Received After","name":"receivedAfter","type":"dateTime","default":"","description":"Get all messages received after the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Received Before","name":"receivedBefore","type":"dateTime","default":"","description":"Get all messages received before the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Sender","name":"sender","type":"string","default":"","description":"Sender name or email to filter by"}]}]}],"displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}],"displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["move"]}}},{"displayName":"Parent Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["move"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Reply to Sender Only","name":"replyToSenderOnly","type":"boolean","default":false,"description":"Whether to reply to the sender only or to the entire list of recipients","displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Message","name":"message","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":"","displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"replyToSenderOnly":[true],"resource":["message"],"operation":["reply"]}},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Input Data Field Name","name":"binaryPropertyName","type":"string","default":"","placeholder":"e.g. data","hint":"The name of the input field containing the binary file data to be attached"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","default":""},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Save as Draft","name":"saveAsDraft","description":"Whether to save the message as a draft. If false, the message is sent immediately.","type":"boolean","default":false}],"displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":"","displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":"","displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Input Data Field Name","name":"binaryPropertyName","type":"string","default":"","placeholder":"e.g. data","hint":"The name of the input field containing the binary file data to be attached"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","default":""},{"displayName":"Save To Sent Items","name":"saveToSentItems","description":"Whether to save the message in Sent Items","type":"boolean","default":true}],"displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":false,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}]},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Is Read","name":"isRead","description":"Whether the message must be marked as read","type":"boolean","default":false},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""}],"displayOptions":{"show":{"resource":["message"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["messageAttachment"]}},"options":[{"name":"Add","value":"add","description":"Add an attachment to a message","action":"Add an attachment"},{"name":"Download","value":"download","description":"Download an attachment from a message","action":"Download an attachment"},{"name":"Get","value":"get","description":"Retrieve information about an attachment of a message","action":"Get an attachment"},{"name":"Get Many","value":"getAll","description":"Retrieve information about the attachments of a message","action":"Get many attachments"}],"default":"add"},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}}},{"displayName":"Input Data Field Name","name":"binaryPropertyName","hint":"The name of the input field containing the binary file data to be attached","type":"string","required":true,"default":"data","placeholder":"e.g. data","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"File Name","name":"fileName","description":"Filename of the attachment. If not set will the file-name of the binary property be used, if it exists.","type":"string","default":""}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download"]}}},{"displayName":"Attachment","name":"attachmentId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["messageId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a attachment...","typeOptions":{"searchListMethod":"searchAttachments","searchable":false}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download"]}}},{"displayName":"Put Output in Field","name":"binaryPropertyName","hint":"The name of the output field to put the binary file data in","type":"string","required":true,"default":"data","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get"]}}},{"displayName":"Attachment","name":"attachmentId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["messageId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a attachment...","typeOptions":{"searchListMethod":"searchAttachments","searchable":false}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","default":[],"options":[{"name":"contentType","value":"contentType"},{"name":"isInline","value":"isInline"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"name","value":"name"},{"name":"size","value":"size"}]}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["messageAttachment"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","default":[],"options":[{"name":"contentType","value":"contentType"},{"name":"isInline","value":"isInline"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"name","value":"name"},{"name":"size","value":"size"}]}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}}}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/Outlook/outlook.svg","codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]},"alias":["email"]}},
|
|
259
|
+
{"displayName":"Microsoft Outlook","name":"n8n-nodes-base.microsoftOutlook","group":["transform"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Microsoft Outlook API","defaultVersion":2,"version":2,"defaults":{"name":"Microsoft Outlook"},"inputs":["main"],"outputs":["main"],"usableAsTool":true,"credentials":[{"name":"microsoftOutlookOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"default":"message","options":[{"name":"Calendar","value":"calendar"},{"name":"Contact","value":"contact"},{"name":"Draft","value":"draft"},{"name":"Event","value":"event"},{"name":"Folder","value":"folder"},{"name":"Folder Message","value":"folderMessage"},{"name":"Message","value":"message"},{"name":"Message Attachment","value":"messageAttachment"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["calendar"]}},"options":[{"name":"Create","value":"create","description":"Create a new calendar","action":"Create a calendar"},{"name":"Delete","value":"delete","description":"Delete a calendar","action":"Delete a calendar"},{"name":"Get","value":"get","description":"Retrieve a calendar","action":"Get a calendar"},{"name":"Get Many","value":"getAll","description":"List and search calendars","action":"Get many calendars"},{"name":"Update","value":"update","description":"Update a calendar","action":"Update a calendar"}],"default":"getAll"},{"displayName":"Name","name":"name","type":"string","default":"","required":true,"description":"The name of the calendar to create","placeholder":"e.g. My Calendar","displayOptions":{"show":{"resource":["calendar"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Calendar Group","name":"calendarGroup","type":"options","typeOptions":{"loadOptionsMethod":"getCalendarGroups"},"default":[],"description":"If set, the calendar will be created in the specified calendar group. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Color","name":"color","type":"options","default":"lightBlue","options":[{"name":"Light Blue","value":"lightBlue"},{"name":"Light Brown","value":"lightBrown"},{"name":"Light Gray","value":"lightGray"},{"name":"Light Green","value":"lightGreen"},{"name":"Light Orange","value":"lightOrange"},{"name":"Light Pink","value":"lightPink"},{"name":"Light Red","value":"lightRed"},{"name":"Light Teal","value":"lightTeal"},{"name":"Light Yellow","value":"lightYellow"}],"description":"Specify the color to distinguish the calendar from the others"}],"displayOptions":{"show":{"resource":["calendar"],"operation":["create"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["delete"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["calendar"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["calendar"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. canShare eq true","hint":"Search query to filter calendars. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["getAll"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["calendar"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Color","name":"color","type":"options","default":"lightBlue","options":[{"name":"Light Blue","value":"lightBlue"},{"name":"Light Brown","value":"lightBrown"},{"name":"Light Gray","value":"lightGray"},{"name":"Light Green","value":"lightGreen"},{"name":"Light Orange","value":"lightOrange"},{"name":"Light Pink","value":"lightPink"},{"name":"Light Red","value":"lightRed"},{"name":"Light Teal","value":"lightTeal"},{"name":"Light Yellow","value":"lightYellow"}],"description":"Specify the color to distinguish the calendar from the others"},{"displayName":"Default Calendar","name":"isDefaultCalendar","type":"boolean","default":false},{"displayName":"Name","name":"name","type":"string","default":"","placeholder":"e.g. My Calendar","description":"The name of the calendar"}],"displayOptions":{"show":{"resource":["calendar"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["contact"]}},"options":[{"name":"Create","value":"create","description":"Create a new contact","action":"Create a contact"},{"name":"Delete","value":"delete","description":"Delete a contact","action":"Delete a contact"},{"name":"Get","value":"get","description":"Retrieve a contact","action":"Get a contact"},{"name":"Get Many","value":"getAll","description":"List and search contacts","action":"Get many contacts"},{"name":"Update","value":"update","description":"Update a contact","action":"Update a contact"}],"default":"getAll"},{"displayName":"First Name","name":"givenName","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["contact"],"operation":["create"]}}},{"displayName":"Last Name","name":"surname","type":"string","default":"","displayOptions":{"show":{"resource":["contact"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Assistant Name","name":"assistantName","type":"string","default":"","description":"The name of the contact's assistant"},{"displayName":"Birthday","name":"birthday","type":"dateTime","default":""},{"displayName":"Business Address","name":"businessAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Business Home Page","name":"businessHomePage","type":"string","default":""},{"displayName":"Business Phones","name":"businessPhones","type":"string","description":"Comma-separated list of business phone numbers","default":""},{"displayName":"Categories","name":"categories","description":"Comma-separated list of categories associated with the contact","type":"string","default":""},{"displayName":"Children","name":"children","description":"Comma-separated list of names of the contact's children","type":"string","default":""},{"displayName":"Company Name","name":"companyName","type":"string","default":""},{"displayName":"Department","name":"department","type":"string","default":""},{"displayName":"Display Name","name":"displayName","type":"string","default":""},{"displayName":"Email Address","name":"emailAddresses","type":"fixedCollection","placeholder":"Add Email","typeOptions":{"multipleValues":true},"default":{},"options":[{"displayName":"Email","name":"values","values":[{"displayName":"Name","name":"name","type":"string","default":""},{"displayName":"Address","name":"address","type":"string","default":""}]}]},{"displayName":"File As","name":"fileAs","type":"string","default":"","description":"The name the contact is filed under"},{"displayName":"Home Address","name":"homeAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Home Phones","name":"homePhones","type":"string","default":"","hint":"Multiple phones can be added separated by ,"},{"displayName":"Instant Messaging Addresses","name":"imAddresses","description":"The contact's instant messaging (IM) addresses","type":"string","default":"","hint":"Multiple addresses can be added separated by ,"},{"displayName":"Initials","name":"initials","type":"string","default":""},{"displayName":"Job Title","name":"jobTitle","type":"string","default":""},{"displayName":"Manager","name":"manager","type":"string","default":"","description":"The name of the contact's manager"},{"displayName":"Middle Name","name":"middleName","type":"string","default":""},{"displayName":"Mobile Phone","name":"mobilePhone","type":"string","default":""},{"displayName":"Name","name":"givenName","type":"string","default":"","displayOptions":{"show":{"/operation":["update"]}}},{"displayName":"Nickname","name":"nickName","type":"string","default":""},{"displayName":"Office Location","name":"officeLocation","type":"string","default":""},{"displayName":"Other Address","name":"otherAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Personal Notes","name":"personalNotes","type":"string","default":"","typeOptions":{"alwaysOpenEditWindow":true}},{"displayName":"Profession","name":"profession","type":"string","default":""},{"displayName":"Spouse Name","name":"spouseName","type":"string","default":""},{"displayName":"Surname","name":"surname","type":"string","default":""},{"displayName":"Title","name":"title","type":"string","default":""}],"displayOptions":{"show":{"resource":["contact"],"operation":["create"]}}},{"displayName":"Contact","name":"contactId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a contact...","typeOptions":{"searchListMethod":"searchContacts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["contact"],"operation":["delete"]}}},{"displayName":"Contact","name":"contactId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a contact...","typeOptions":{"searchListMethod":"searchContacts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["contact"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["contact"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["contact"],"operation":["get"]}},"options":[{"name":"createdDateTime","value":"createdDateTime"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"changeKey","value":"changeKey"},{"name":"categories","value":"categories"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"birthday","value":"birthday"},{"name":"fileAs","value":"fileAs"},{"name":"displayName","value":"displayName"},{"name":"givenName","value":"givenName"},{"name":"initials","value":"initials"},{"name":"middleName","value":"middleName"},{"name":"nickName","value":"nickName"},{"name":"surname","value":"surname"},{"name":"title","value":"title"},{"name":"yomiGivenName","value":"yomiGivenName"},{"name":"yomiSurname","value":"yomiSurname"},{"name":"yomiCompanyName","value":"yomiCompanyName"},{"name":"generation","value":"generation"},{"name":"imAddresses","value":"imAddresses"},{"name":"jobTitle","value":"jobTitle"},{"name":"companyName","value":"companyName"},{"name":"department","value":"department"},{"name":"officeLocation","value":"officeLocation"},{"name":"profession","value":"profession"},{"name":"businessHomePage","value":"businessHomePage"},{"name":"assistantName","value":"assistantName"},{"name":"manager","value":"manager"},{"name":"homePhones","value":"homePhones"},{"name":"mobilePhone","value":"mobilePhone"},{"name":"businessPhones","value":"businessPhones"},{"name":"spouseName","value":"spouseName"},{"name":"personalNotes","value":"personalNotes"},{"name":"children","value":"children"},{"name":"emailAddresses","value":"emailAddresses"},{"name":"homeAddress","value":"homeAddress"},{"name":"businessAddress","value":"businessAddress"},{"name":"otherAddress","value":"otherAddress"}],"default":[]},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["contact"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["contact"],"operation":["getAll"]}},"options":[{"name":"createdDateTime","value":"createdDateTime"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"changeKey","value":"changeKey"},{"name":"categories","value":"categories"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"birthday","value":"birthday"},{"name":"fileAs","value":"fileAs"},{"name":"displayName","value":"displayName"},{"name":"givenName","value":"givenName"},{"name":"initials","value":"initials"},{"name":"middleName","value":"middleName"},{"name":"nickName","value":"nickName"},{"name":"surname","value":"surname"},{"name":"title","value":"title"},{"name":"yomiGivenName","value":"yomiGivenName"},{"name":"yomiSurname","value":"yomiSurname"},{"name":"yomiCompanyName","value":"yomiCompanyName"},{"name":"generation","value":"generation"},{"name":"imAddresses","value":"imAddresses"},{"name":"jobTitle","value":"jobTitle"},{"name":"companyName","value":"companyName"},{"name":"department","value":"department"},{"name":"officeLocation","value":"officeLocation"},{"name":"profession","value":"profession"},{"name":"businessHomePage","value":"businessHomePage"},{"name":"assistantName","value":"assistantName"},{"name":"manager","value":"manager"},{"name":"homePhones","value":"homePhones"},{"name":"mobilePhone","value":"mobilePhone"},{"name":"businessPhones","value":"businessPhones"},{"name":"spouseName","value":"spouseName"},{"name":"personalNotes","value":"personalNotes"},{"name":"children","value":"children"},{"name":"emailAddresses","value":"emailAddresses"},{"name":"homeAddress","value":"homeAddress"},{"name":"businessAddress","value":"businessAddress"},{"name":"otherAddress","value":"otherAddress"}],"default":[]},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. displayName eq 'John Doe'","hint":"Search query to filter contacts. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Email Address","name":"emailAddress","type":"string","default":"","description":"If contacts that you want to retrieve have multiple email addresses, you can enter them separated by commas"}],"displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}}},{"displayName":"Contact","name":"contactId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a contact...","typeOptions":{"searchListMethod":"searchContacts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["contact"],"operation":["update"]}}},{"displayName":"Update Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Assistant Name","name":"assistantName","type":"string","default":"","description":"The name of the contact's assistant"},{"displayName":"Birthday","name":"birthday","type":"dateTime","default":""},{"displayName":"Business Address","name":"businessAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Business Home Page","name":"businessHomePage","type":"string","default":""},{"displayName":"Business Phones","name":"businessPhones","type":"string","description":"Comma-separated list of business phone numbers","default":""},{"displayName":"Categories","name":"categories","description":"Comma-separated list of categories associated with the contact","type":"string","default":""},{"displayName":"Children","name":"children","description":"Comma-separated list of names of the contact's children","type":"string","default":""},{"displayName":"Company Name","name":"companyName","type":"string","default":""},{"displayName":"Department","name":"department","type":"string","default":""},{"displayName":"Display Name","name":"displayName","type":"string","default":""},{"displayName":"Email Address","name":"emailAddresses","type":"fixedCollection","placeholder":"Add Email","typeOptions":{"multipleValues":true},"default":{},"options":[{"displayName":"Email","name":"values","values":[{"displayName":"Name","name":"name","type":"string","default":""},{"displayName":"Address","name":"address","type":"string","default":""}]}]},{"displayName":"File As","name":"fileAs","type":"string","default":"","description":"The name the contact is filed under"},{"displayName":"Home Address","name":"homeAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Home Phones","name":"homePhones","type":"string","default":"","hint":"Multiple phones can be added separated by ,"},{"displayName":"Instant Messaging Addresses","name":"imAddresses","description":"The contact's instant messaging (IM) addresses","type":"string","default":"","hint":"Multiple addresses can be added separated by ,"},{"displayName":"Initials","name":"initials","type":"string","default":""},{"displayName":"Job Title","name":"jobTitle","type":"string","default":""},{"displayName":"Manager","name":"manager","type":"string","default":"","description":"The name of the contact's manager"},{"displayName":"Middle Name","name":"middleName","type":"string","default":""},{"displayName":"Mobile Phone","name":"mobilePhone","type":"string","default":""},{"displayName":"Name","name":"givenName","type":"string","default":"","displayOptions":{"show":{"/operation":["update"]}}},{"displayName":"Nickname","name":"nickName","type":"string","default":""},{"displayName":"Office Location","name":"officeLocation","type":"string","default":""},{"displayName":"Other Address","name":"otherAddress","type":"fixedCollection","placeholder":"Add Address","default":{"values":{"sity":"","street":"","postalCode":"","countryOrRegion":"","state":""}},"options":[{"displayName":"Address","name":"values","values":[{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Country/Region","name":"countryOrRegion","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":""},{"displayName":"Street","name":"street","type":"string","default":""}]}]},{"displayName":"Personal Notes","name":"personalNotes","type":"string","default":"","typeOptions":{"alwaysOpenEditWindow":true}},{"displayName":"Profession","name":"profession","type":"string","default":""},{"displayName":"Spouse Name","name":"spouseName","type":"string","default":""},{"displayName":"Surname","name":"surname","type":"string","default":""},{"displayName":"Title","name":"title","type":"string","default":""}],"displayOptions":{"show":{"resource":["contact"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["draft"]}},"options":[{"name":"Create","value":"create","description":"Create a new email draft","action":"Create a draft"},{"name":"Delete","value":"delete","description":"Delete an email draft","action":"Delete a draft"},{"name":"Get","value":"get","description":"Retrieve an email draft","action":"Get a draft"},{"name":"Send","value":"send","description":"Send an existing email draft","action":"Send a draft"},{"name":"Update","value":"update","description":"Update an email draft","action":"Update a draft"}],"default":"create"},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":"","displayOptions":{"show":{"resource":["draft"],"operation":["create"]}}},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":"","displayOptions":{"show":{"resource":["draft"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Input Data Field Name","name":"binaryPropertyName","type":"string","default":"","placeholder":"e.g. data","hint":"The name of the input field containing the binary file data to be attached"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","placeholder":"e.g. replyto@example.com","default":""},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","placeholder":"e.g. john@example.com","default":""}],"displayOptions":{"show":{"resource":["draft"],"operation":["create"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["delete"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["draft"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["draft"],"operation":["get"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}],"displayOptions":{"show":{"resource":["draft"],"operation":["get"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["send"]}}},{"displayName":"To","name":"to","description":"Comma-separated list of email addresses of recipients","type":"string","default":"","displayOptions":{"show":{"resource":["draft"],"operation":["send"]}}},{"displayName":"Draft","name":"draftId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a draft...","typeOptions":{"searchListMethod":"searchDrafts","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["draft"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","placeholder":"e.g. john@example.com","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Is Read","name":"isRead","description":"Whether the message must be marked as read","type":"boolean","default":false},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","placeholder":"e.g. replyto@example.com","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","placeholder":"e.g. john@example.com","default":""}],"displayOptions":{"show":{"resource":["draft"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["event"]}},"options":[{"name":"Create","value":"create","description":"Create a new event","action":"Create an event"},{"name":"Delete","value":"delete","description":"Delete an event","action":"Delete an event"},{"name":"Get","value":"get","description":"Retrieve an event","action":"Get an event"},{"name":"Get Many","value":"getAll","description":"List and search events","action":"Get many events"},{"name":"Update","value":"update","description":"Update an event","action":"Update an event"}],"default":"getAll"},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Title","name":"subject","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Start","name":"startDateTime","type":"dateTime","default":"2024-10-16T11:28:21.158+00:00","required":true,"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"End","name":"endDateTime","type":"dateTime","required":true,"default":"2024-10-16T11:58:21.158+00:00","displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Categories","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"Description","name":"body","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Description Preview","name":"bodyPreview","type":"string","default":""},{"displayName":"Hide Attendees","name":"hideAttendees","type":"boolean","default":false,"description":"Whether to allow each attendee to only see themselves in the meeting request and meeting tracking list"},{"displayName":"Importance","name":"importance","type":"options","options":[{"name":"Low","value":"low"},{"name":"Normal","value":"normal"},{"name":"High","value":"high"}],"default":"normal"},{"displayName":"Is All Day","name":"isAllDay","type":"boolean","default":false},{"displayName":"Is Cancelled","name":"isCancelled","type":"boolean","default":false},{"displayName":"Is Draft","name":"isDraft","type":"boolean","default":false},{"displayName":"Is Online Meeting","name":"isOnlineMeeting","type":"boolean","default":false},{"displayName":"Sensitivity","name":"sensitivity","type":"options","default":"normal","options":[{"name":"Normal","value":"normal"},{"name":"Personal","value":"personal"},{"name":"Private","value":"private"},{"name":"Confidential","value":"confidential"}]},{"displayName":"Show As","name":"showAs","type":"options","default":"free","options":[{"name":"Busy","value":"busy"},{"name":"Free","value":"free"},{"name":"Oof","value":"oof"},{"name":"Tentative","value":"tentative"},{"name":"Working Elsewhere","value":"workingElsewhere"}]},{"displayName":"Timezone","name":"timeZone","type":"options","default":"UTC","options":[{"name":"Africa/Abidjan","value":"Africa/Abidjan"},{"name":"Africa/Accra","value":"Africa/Accra"},{"name":"Africa/Addis_Ababa","value":"Africa/Addis_Ababa"},{"name":"Africa/Algiers","value":"Africa/Algiers"},{"name":"Africa/Asmara","value":"Africa/Asmara"},{"name":"Africa/Asmera","value":"Africa/Asmera"},{"name":"Africa/Bamako","value":"Africa/Bamako"},{"name":"Africa/Bangui","value":"Africa/Bangui"},{"name":"Africa/Banjul","value":"Africa/Banjul"},{"name":"Africa/Bissau","value":"Africa/Bissau"},{"name":"Africa/Blantyre","value":"Africa/Blantyre"},{"name":"Africa/Brazzaville","value":"Africa/Brazzaville"},{"name":"Africa/Bujumbura","value":"Africa/Bujumbura"},{"name":"Africa/Cairo","value":"Africa/Cairo"},{"name":"Africa/Casablanca","value":"Africa/Casablanca"},{"name":"Africa/Ceuta","value":"Africa/Ceuta"},{"name":"Africa/Conakry","value":"Africa/Conakry"},{"name":"Africa/Dakar","value":"Africa/Dakar"},{"name":"Africa/Dar_es_Salaam","value":"Africa/Dar_es_Salaam"},{"name":"Africa/Djibouti","value":"Africa/Djibouti"},{"name":"Africa/Douala","value":"Africa/Douala"},{"name":"Africa/El_Aaiun","value":"Africa/El_Aaiun"},{"name":"Africa/Freetown","value":"Africa/Freetown"},{"name":"Africa/Gaborone","value":"Africa/Gaborone"},{"name":"Africa/Harare","value":"Africa/Harare"},{"name":"Africa/Johannesburg","value":"Africa/Johannesburg"},{"name":"Africa/Juba","value":"Africa/Juba"},{"name":"Africa/Kampala","value":"Africa/Kampala"},{"name":"Africa/Khartoum","value":"Africa/Khartoum"},{"name":"Africa/Kigali","value":"Africa/Kigali"},{"name":"Africa/Kinshasa","value":"Africa/Kinshasa"},{"name":"Africa/Lagos","value":"Africa/Lagos"},{"name":"Africa/Libreville","value":"Africa/Libreville"},{"name":"Africa/Lome","value":"Africa/Lome"},{"name":"Africa/Luanda","value":"Africa/Luanda"},{"name":"Africa/Lubumbashi","value":"Africa/Lubumbashi"},{"name":"Africa/Lusaka","value":"Africa/Lusaka"},{"name":"Africa/Malabo","value":"Africa/Malabo"},{"name":"Africa/Maputo","value":"Africa/Maputo"},{"name":"Africa/Maseru","value":"Africa/Maseru"},{"name":"Africa/Mbabane","value":"Africa/Mbabane"},{"name":"Africa/Mogadishu","value":"Africa/Mogadishu"},{"name":"Africa/Monrovia","value":"Africa/Monrovia"},{"name":"Africa/Nairobi","value":"Africa/Nairobi"},{"name":"Africa/Ndjamena","value":"Africa/Ndjamena"},{"name":"Africa/Niamey","value":"Africa/Niamey"},{"name":"Africa/Nouakchott","value":"Africa/Nouakchott"},{"name":"Africa/Ouagadougou","value":"Africa/Ouagadougou"},{"name":"Africa/Porto-Novo","value":"Africa/Porto-Novo"},{"name":"Africa/Sao_Tome","value":"Africa/Sao_Tome"},{"name":"Africa/Timbuktu","value":"Africa/Timbuktu"},{"name":"Africa/Tripoli","value":"Africa/Tripoli"},{"name":"Africa/Tunis","value":"Africa/Tunis"},{"name":"Africa/Windhoek","value":"Africa/Windhoek"},{"name":"America/Adak","value":"America/Adak"},{"name":"America/Anchorage","value":"America/Anchorage"},{"name":"America/Anguilla","value":"America/Anguilla"},{"name":"America/Antigua","value":"America/Antigua"},{"name":"America/Araguaina","value":"America/Araguaina"},{"name":"America/Argentina/Buenos_Aires","value":"America/Argentina/Buenos_Aires"},{"name":"America/Argentina/Catamarca","value":"America/Argentina/Catamarca"},{"name":"America/Argentina/ComodRivadavia","value":"America/Argentina/ComodRivadavia"},{"name":"America/Argentina/Cordoba","value":"America/Argentina/Cordoba"},{"name":"America/Argentina/Jujuy","value":"America/Argentina/Jujuy"},{"name":"America/Argentina/La_Rioja","value":"America/Argentina/La_Rioja"},{"name":"America/Argentina/Mendoza","value":"America/Argentina/Mendoza"},{"name":"America/Argentina/Rio_Gallegos","value":"America/Argentina/Rio_Gallegos"},{"name":"America/Argentina/Salta","value":"America/Argentina/Salta"},{"name":"America/Argentina/San_Juan","value":"America/Argentina/San_Juan"},{"name":"America/Argentina/San_Luis","value":"America/Argentina/San_Luis"},{"name":"America/Argentina/Tucuman","value":"America/Argentina/Tucuman"},{"name":"America/Argentina/Ushuaia","value":"America/Argentina/Ushuaia"},{"name":"America/Aruba","value":"America/Aruba"},{"name":"America/Asuncion","value":"America/Asuncion"},{"name":"America/Atikokan","value":"America/Atikokan"},{"name":"America/Atka","value":"America/Atka"},{"name":"America/Bahia","value":"America/Bahia"},{"name":"America/Bahia_Banderas","value":"America/Bahia_Banderas"},{"name":"America/Barbados","value":"America/Barbados"},{"name":"America/Belem","value":"America/Belem"},{"name":"America/Belize","value":"America/Belize"},{"name":"America/Blanc-Sablon","value":"America/Blanc-Sablon"},{"name":"America/Boa_Vista","value":"America/Boa_Vista"},{"name":"America/Bogota","value":"America/Bogota"},{"name":"America/Boise","value":"America/Boise"},{"name":"America/Buenos_Aires","value":"America/Buenos_Aires"},{"name":"America/Cambridge_Bay","value":"America/Cambridge_Bay"},{"name":"America/Campo_Grande","value":"America/Campo_Grande"},{"name":"America/Cancun","value":"America/Cancun"},{"name":"America/Caracas","value":"America/Caracas"},{"name":"America/Catamarca","value":"America/Catamarca"},{"name":"America/Cayenne","value":"America/Cayenne"},{"name":"America/Cayman","value":"America/Cayman"},{"name":"America/Chicago","value":"America/Chicago"},{"name":"America/Chihuahua","value":"America/Chihuahua"},{"name":"America/Coral_Harbour","value":"America/Coral_Harbour"},{"name":"America/Cordoba","value":"America/Cordoba"},{"name":"America/Costa_Rica","value":"America/Costa_Rica"},{"name":"America/Creston","value":"America/Creston"},{"name":"America/Cuiaba","value":"America/Cuiaba"},{"name":"America/Curacao","value":"America/Curacao"},{"name":"America/Danmarkshavn","value":"America/Danmarkshavn"},{"name":"America/Dawson","value":"America/Dawson"},{"name":"America/Dawson_Creek","value":"America/Dawson_Creek"},{"name":"America/Denver","value":"America/Denver"},{"name":"America/Detroit","value":"America/Detroit"},{"name":"America/Dominica","value":"America/Dominica"},{"name":"America/Edmonton","value":"America/Edmonton"},{"name":"America/Eirunepe","value":"America/Eirunepe"},{"name":"America/El_Salvador","value":"America/El_Salvador"},{"name":"America/Ensenada","value":"America/Ensenada"},{"name":"America/Fort_Nelson","value":"America/Fort_Nelson"},{"name":"America/Fort_Wayne","value":"America/Fort_Wayne"},{"name":"America/Fortaleza","value":"America/Fortaleza"},{"name":"America/Glace_Bay","value":"America/Glace_Bay"},{"name":"America/Godthab","value":"America/Godthab"},{"name":"America/Goose_Bay","value":"America/Goose_Bay"},{"name":"America/Grand_Turk","value":"America/Grand_Turk"},{"name":"America/Grenada","value":"America/Grenada"},{"name":"America/Guadeloupe","value":"America/Guadeloupe"},{"name":"America/Guatemala","value":"America/Guatemala"},{"name":"America/Guayaquil","value":"America/Guayaquil"},{"name":"America/Guyana","value":"America/Guyana"},{"name":"America/Halifax","value":"America/Halifax"},{"name":"America/Havana","value":"America/Havana"},{"name":"America/Hermosillo","value":"America/Hermosillo"},{"name":"America/Indiana/Indianapolis","value":"America/Indiana/Indianapolis"},{"name":"America/Indiana/Knox","value":"America/Indiana/Knox"},{"name":"America/Indiana/Marengo","value":"America/Indiana/Marengo"},{"name":"America/Indiana/Petersburg","value":"America/Indiana/Petersburg"},{"name":"America/Indiana/Tell_City","value":"America/Indiana/Tell_City"},{"name":"America/Indiana/Vevay","value":"America/Indiana/Vevay"},{"name":"America/Indiana/Vincennes","value":"America/Indiana/Vincennes"},{"name":"America/Indiana/Winamac","value":"America/Indiana/Winamac"},{"name":"America/Indianapolis","value":"America/Indianapolis"},{"name":"America/Inuvik","value":"America/Inuvik"},{"name":"America/Iqaluit","value":"America/Iqaluit"},{"name":"America/Jamaica","value":"America/Jamaica"},{"name":"America/Jujuy","value":"America/Jujuy"},{"name":"America/Juneau","value":"America/Juneau"},{"name":"America/Kentucky/Louisville","value":"America/Kentucky/Louisville"},{"name":"America/Kentucky/Monticello","value":"America/Kentucky/Monticello"},{"name":"America/Knox_IN","value":"America/Knox_IN"},{"name":"America/Kralendijk","value":"America/Kralendijk"},{"name":"America/La_Paz","value":"America/La_Paz"},{"name":"America/Lima","value":"America/Lima"},{"name":"America/Los_Angeles","value":"America/Los_Angeles"},{"name":"America/Louisville","value":"America/Louisville"},{"name":"America/Lower_Princes","value":"America/Lower_Princes"},{"name":"America/Maceio","value":"America/Maceio"},{"name":"America/Managua","value":"America/Managua"},{"name":"America/Manaus","value":"America/Manaus"},{"name":"America/Marigot","value":"America/Marigot"},{"name":"America/Martinique","value":"America/Martinique"},{"name":"America/Matamoros","value":"America/Matamoros"},{"name":"America/Mazatlan","value":"America/Mazatlan"},{"name":"America/Mendoza","value":"America/Mendoza"},{"name":"America/Menominee","value":"America/Menominee"},{"name":"America/Merida","value":"America/Merida"},{"name":"America/Metlakatla","value":"America/Metlakatla"},{"name":"America/Mexico_City","value":"America/Mexico_City"},{"name":"America/Miquelon","value":"America/Miquelon"},{"name":"America/Moncton","value":"America/Moncton"},{"name":"America/Monterrey","value":"America/Monterrey"},{"name":"America/Montevideo","value":"America/Montevideo"},{"name":"America/Montreal","value":"America/Montreal"},{"name":"America/Montserrat","value":"America/Montserrat"},{"name":"America/Nassau","value":"America/Nassau"},{"name":"America/New_York","value":"America/New_York"},{"name":"America/Nipigon","value":"America/Nipigon"},{"name":"America/Nome","value":"America/Nome"},{"name":"America/Noronha","value":"America/Noronha"},{"name":"America/North_Dakota/Beulah","value":"America/North_Dakota/Beulah"},{"name":"America/North_Dakota/Center","value":"America/North_Dakota/Center"},{"name":"America/North_Dakota/New_Salem","value":"America/North_Dakota/New_Salem"},{"name":"America/Nuuk","value":"America/Nuuk"},{"name":"America/Ojinaga","value":"America/Ojinaga"},{"name":"America/Panama","value":"America/Panama"},{"name":"America/Pangnirtung","value":"America/Pangnirtung"},{"name":"America/Paramaribo","value":"America/Paramaribo"},{"name":"America/Phoenix","value":"America/Phoenix"},{"name":"America/Port-au-Prince","value":"America/Port-au-Prince"},{"name":"America/Port_of_Spain","value":"America/Port_of_Spain"},{"name":"America/Porto_Acre","value":"America/Porto_Acre"},{"name":"America/Porto_Velho","value":"America/Porto_Velho"},{"name":"America/Puerto_Rico","value":"America/Puerto_Rico"},{"name":"America/Punta_Arenas","value":"America/Punta_Arenas"},{"name":"America/Rainy_River","value":"America/Rainy_River"},{"name":"America/Rankin_Inlet","value":"America/Rankin_Inlet"},{"name":"America/Recife","value":"America/Recife"},{"name":"America/Regina","value":"America/Regina"},{"name":"America/Resolute","value":"America/Resolute"},{"name":"America/Rio_Branco","value":"America/Rio_Branco"},{"name":"America/Rosario","value":"America/Rosario"},{"name":"America/Santa_Isabel","value":"America/Santa_Isabel"},{"name":"America/Santarem","value":"America/Santarem"},{"name":"America/Santiago","value":"America/Santiago"},{"name":"America/Santo_Domingo","value":"America/Santo_Domingo"},{"name":"America/Sao_Paulo","value":"America/Sao_Paulo"},{"name":"America/Scoresbysund","value":"America/Scoresbysund"},{"name":"America/Shiprock","value":"America/Shiprock"},{"name":"America/Sitka","value":"America/Sitka"},{"name":"America/St_Barthelemy","value":"America/St_Barthelemy"},{"name":"America/St_Johns","value":"America/St_Johns"},{"name":"America/St_Kitts","value":"America/St_Kitts"},{"name":"America/St_Lucia","value":"America/St_Lucia"},{"name":"America/St_Thomas","value":"America/St_Thomas"},{"name":"America/St_Vincent","value":"America/St_Vincent"},{"name":"America/Swift_Current","value":"America/Swift_Current"},{"name":"America/Tegucigalpa","value":"America/Tegucigalpa"},{"name":"America/Thule","value":"America/Thule"},{"name":"America/Thunder_Bay","value":"America/Thunder_Bay"},{"name":"America/Tijuana","value":"America/Tijuana"},{"name":"America/Toronto","value":"America/Toronto"},{"name":"America/Tortola","value":"America/Tortola"},{"name":"America/Vancouver","value":"America/Vancouver"},{"name":"America/Virgin","value":"America/Virgin"},{"name":"America/Whitehorse","value":"America/Whitehorse"},{"name":"America/Winnipeg","value":"America/Winnipeg"},{"name":"America/Yakutat","value":"America/Yakutat"},{"name":"America/Yellowknife","value":"America/Yellowknife"},{"name":"Antarctica/Casey","value":"Antarctica/Casey"},{"name":"Antarctica/Davis","value":"Antarctica/Davis"},{"name":"Antarctica/DumontDUrville","value":"Antarctica/DumontDUrville"},{"name":"Antarctica/Macquarie","value":"Antarctica/Macquarie"},{"name":"Antarctica/Mawson","value":"Antarctica/Mawson"},{"name":"Antarctica/McMurdo","value":"Antarctica/McMurdo"},{"name":"Antarctica/Palmer","value":"Antarctica/Palmer"},{"name":"Antarctica/Rothera","value":"Antarctica/Rothera"},{"name":"Antarctica/South_Pole","value":"Antarctica/South_Pole"},{"name":"Antarctica/Syowa","value":"Antarctica/Syowa"},{"name":"Antarctica/Troll","value":"Antarctica/Troll"},{"name":"Antarctica/Vostok","value":"Antarctica/Vostok"},{"name":"Arctic/Longyearbyen","value":"Arctic/Longyearbyen"},{"name":"Asia/Aden","value":"Asia/Aden"},{"name":"Asia/Almaty","value":"Asia/Almaty"},{"name":"Asia/Amman","value":"Asia/Amman"},{"name":"Asia/Anadyr","value":"Asia/Anadyr"},{"name":"Asia/Aqtau","value":"Asia/Aqtau"},{"name":"Asia/Aqtobe","value":"Asia/Aqtobe"},{"name":"Asia/Ashgabat","value":"Asia/Ashgabat"},{"name":"Asia/Ashkhabad","value":"Asia/Ashkhabad"},{"name":"Asia/Atyrau","value":"Asia/Atyrau"},{"name":"Asia/Baghdad","value":"Asia/Baghdad"},{"name":"Asia/Bahrain","value":"Asia/Bahrain"},{"name":"Asia/Baku","value":"Asia/Baku"},{"name":"Asia/Bangkok","value":"Asia/Bangkok"},{"name":"Asia/Barnaul","value":"Asia/Barnaul"},{"name":"Asia/Beirut","value":"Asia/Beirut"},{"name":"Asia/Bishkek","value":"Asia/Bishkek"},{"name":"Asia/Brunei","value":"Asia/Brunei"},{"name":"Asia/Calcutta","value":"Asia/Calcutta"},{"name":"Asia/Chita","value":"Asia/Chita"},{"name":"Asia/Choibalsan","value":"Asia/Choibalsan"},{"name":"Asia/Chongqing","value":"Asia/Chongqing"},{"name":"Asia/Chungking","value":"Asia/Chungking"},{"name":"Asia/Colombo","value":"Asia/Colombo"},{"name":"Asia/Dacca","value":"Asia/Dacca"},{"name":"Asia/Damascus","value":"Asia/Damascus"},{"name":"Asia/Dhaka","value":"Asia/Dhaka"},{"name":"Asia/Dili","value":"Asia/Dili"},{"name":"Asia/Dubai","value":"Asia/Dubai"},{"name":"Asia/Dushanbe","value":"Asia/Dushanbe"},{"name":"Asia/Famagusta","value":"Asia/Famagusta"},{"name":"Asia/Gaza","value":"Asia/Gaza"},{"name":"Asia/Harbin","value":"Asia/Harbin"},{"name":"Asia/Hebron","value":"Asia/Hebron"},{"name":"Asia/Ho_Chi_Minh","value":"Asia/Ho_Chi_Minh"},{"name":"Asia/Hong_Kong","value":"Asia/Hong_Kong"},{"name":"Asia/Hovd","value":"Asia/Hovd"},{"name":"Asia/Irkutsk","value":"Asia/Irkutsk"},{"name":"Asia/Istanbul","value":"Asia/Istanbul"},{"name":"Asia/Jakarta","value":"Asia/Jakarta"},{"name":"Asia/Jayapura","value":"Asia/Jayapura"},{"name":"Asia/Jerusalem","value":"Asia/Jerusalem"},{"name":"Asia/Kabul","value":"Asia/Kabul"},{"name":"Asia/Kamchatka","value":"Asia/Kamchatka"},{"name":"Asia/Karachi","value":"Asia/Karachi"},{"name":"Asia/Kashgar","value":"Asia/Kashgar"},{"name":"Asia/Kathmandu","value":"Asia/Kathmandu"},{"name":"Asia/Katmandu","value":"Asia/Katmandu"},{"name":"Asia/Khandyga","value":"Asia/Khandyga"},{"name":"Asia/Kolkata","value":"Asia/Kolkata"},{"name":"Asia/Krasnoyarsk","value":"Asia/Krasnoyarsk"},{"name":"Asia/Kuala_Lumpur","value":"Asia/Kuala_Lumpur"},{"name":"Asia/Kuching","value":"Asia/Kuching"},{"name":"Asia/Kuwait","value":"Asia/Kuwait"},{"name":"Asia/Macao","value":"Asia/Macao"},{"name":"Asia/Macau","value":"Asia/Macau"},{"name":"Asia/Magadan","value":"Asia/Magadan"},{"name":"Asia/Makassar","value":"Asia/Makassar"},{"name":"Asia/Manila","value":"Asia/Manila"},{"name":"Asia/Muscat","value":"Asia/Muscat"},{"name":"Asia/Nicosia","value":"Asia/Nicosia"},{"name":"Asia/Novokuznetsk","value":"Asia/Novokuznetsk"},{"name":"Asia/Novosibirsk","value":"Asia/Novosibirsk"},{"name":"Asia/Omsk","value":"Asia/Omsk"},{"name":"Asia/Oral","value":"Asia/Oral"},{"name":"Asia/Phnom_Penh","value":"Asia/Phnom_Penh"},{"name":"Asia/Pontianak","value":"Asia/Pontianak"},{"name":"Asia/Pyongyang","value":"Asia/Pyongyang"},{"name":"Asia/Qatar","value":"Asia/Qatar"},{"name":"Asia/Qostanay","value":"Asia/Qostanay"},{"name":"Asia/Qyzylorda","value":"Asia/Qyzylorda"},{"name":"Asia/Rangoon","value":"Asia/Rangoon"},{"name":"Asia/Riyadh","value":"Asia/Riyadh"},{"name":"Asia/Saigon","value":"Asia/Saigon"},{"name":"Asia/Sakhalin","value":"Asia/Sakhalin"},{"name":"Asia/Samarkand","value":"Asia/Samarkand"},{"name":"Asia/Seoul","value":"Asia/Seoul"},{"name":"Asia/Shanghai","value":"Asia/Shanghai"},{"name":"Asia/Singapore","value":"Asia/Singapore"},{"name":"Asia/Srednekolymsk","value":"Asia/Srednekolymsk"},{"name":"Asia/Taipei","value":"Asia/Taipei"},{"name":"Asia/Tashkent","value":"Asia/Tashkent"},{"name":"Asia/Tbilisi","value":"Asia/Tbilisi"},{"name":"Asia/Tehran","value":"Asia/Tehran"},{"name":"Asia/Tel_Aviv","value":"Asia/Tel_Aviv"},{"name":"Asia/Thimbu","value":"Asia/Thimbu"},{"name":"Asia/Thimphu","value":"Asia/Thimphu"},{"name":"Asia/Tokyo","value":"Asia/Tokyo"},{"name":"Asia/Tomsk","value":"Asia/Tomsk"},{"name":"Asia/Ujung_Pandang","value":"Asia/Ujung_Pandang"},{"name":"Asia/Ulaanbaatar","value":"Asia/Ulaanbaatar"},{"name":"Asia/Ulan_Bator","value":"Asia/Ulan_Bator"},{"name":"Asia/Urumqi","value":"Asia/Urumqi"},{"name":"Asia/Ust-Nera","value":"Asia/Ust-Nera"},{"name":"Asia/Vientiane","value":"Asia/Vientiane"},{"name":"Asia/Vladivostok","value":"Asia/Vladivostok"},{"name":"Asia/Yakutsk","value":"Asia/Yakutsk"},{"name":"Asia/Yangon","value":"Asia/Yangon"},{"name":"Asia/Yekaterinburg","value":"Asia/Yekaterinburg"},{"name":"Asia/Yerevan","value":"Asia/Yerevan"},{"name":"Atlantic/Azores","value":"Atlantic/Azores"},{"name":"Atlantic/Bermuda","value":"Atlantic/Bermuda"},{"name":"Atlantic/Canary","value":"Atlantic/Canary"},{"name":"Atlantic/Cape_Verde","value":"Atlantic/Cape_Verde"},{"name":"Atlantic/Faeroe","value":"Atlantic/Faeroe"},{"name":"Atlantic/Faroe","value":"Atlantic/Faroe"},{"name":"Atlantic/Jan_Mayen","value":"Atlantic/Jan_Mayen"},{"name":"Atlantic/Madeira","value":"Atlantic/Madeira"},{"name":"Atlantic/Reykjavik","value":"Atlantic/Reykjavik"},{"name":"Atlantic/South_Georgia","value":"Atlantic/South_Georgia"},{"name":"Atlantic/St_Helena","value":"Atlantic/St_Helena"},{"name":"Atlantic/Stanley","value":"Atlantic/Stanley"},{"name":"Australia/ACT","value":"Australia/ACT"},{"name":"Australia/Adelaide","value":"Australia/Adelaide"},{"name":"Australia/Brisbane","value":"Australia/Brisbane"},{"name":"Australia/Broken_Hill","value":"Australia/Broken_Hill"},{"name":"Australia/Canberra","value":"Australia/Canberra"},{"name":"Australia/Currie","value":"Australia/Currie"},{"name":"Australia/Darwin","value":"Australia/Darwin"},{"name":"Australia/Eucla","value":"Australia/Eucla"},{"name":"Australia/Hobart","value":"Australia/Hobart"},{"name":"Australia/LHI","value":"Australia/LHI"},{"name":"Australia/Lindeman","value":"Australia/Lindeman"},{"name":"Australia/Lord_Howe","value":"Australia/Lord_Howe"},{"name":"Australia/Melbourne","value":"Australia/Melbourne"},{"name":"Australia/NSW","value":"Australia/NSW"},{"name":"Australia/North","value":"Australia/North"},{"name":"Australia/Perth","value":"Australia/Perth"},{"name":"Australia/Queensland","value":"Australia/Queensland"},{"name":"Australia/South","value":"Australia/South"},{"name":"Australia/Sydney","value":"Australia/Sydney"},{"name":"Australia/Tasmania","value":"Australia/Tasmania"},{"name":"Australia/Victoria","value":"Australia/Victoria"},{"name":"Australia/West","value":"Australia/West"},{"name":"Australia/Yancowinna","value":"Australia/Yancowinna"},{"name":"Brazil/Acre","value":"Brazil/Acre"},{"name":"Brazil/DeNoronha","value":"Brazil/DeNoronha"},{"name":"Brazil/East","value":"Brazil/East"},{"name":"Brazil/West","value":"Brazil/West"},{"name":"CET","value":"CET"},{"name":"CST6CDT","value":"CST6CDT"},{"name":"Canada/Atlantic","value":"Canada/Atlantic"},{"name":"Canada/Central","value":"Canada/Central"},{"name":"Canada/Eastern","value":"Canada/Eastern"},{"name":"Canada/Mountain","value":"Canada/Mountain"},{"name":"Canada/Newfoundland","value":"Canada/Newfoundland"},{"name":"Canada/Pacific","value":"Canada/Pacific"},{"name":"Canada/Saskatchewan","value":"Canada/Saskatchewan"},{"name":"Canada/Yukon","value":"Canada/Yukon"},{"name":"Chile/Continental","value":"Chile/Continental"},{"name":"Chile/EasterIsland","value":"Chile/EasterIsland"},{"name":"Cuba","value":"Cuba"},{"name":"EET","value":"EET"},{"name":"EST","value":"EST"},{"name":"EST5EDT","value":"EST5EDT"},{"name":"Egypt","value":"Egypt"},{"name":"Eire","value":"Eire"},{"name":"Etc/GMT","value":"Etc/GMT"},{"name":"Etc/GMT+0","value":"Etc/GMT+0"},{"name":"Etc/GMT+1","value":"Etc/GMT+1"},{"name":"Etc/GMT+10","value":"Etc/GMT+10"},{"name":"Etc/GMT+11","value":"Etc/GMT+11"},{"name":"Etc/GMT+12","value":"Etc/GMT+12"},{"name":"Etc/GMT+2","value":"Etc/GMT+2"},{"name":"Etc/GMT+3","value":"Etc/GMT+3"},{"name":"Etc/GMT+4","value":"Etc/GMT+4"},{"name":"Etc/GMT+5","value":"Etc/GMT+5"},{"name":"Etc/GMT+6","value":"Etc/GMT+6"},{"name":"Etc/GMT+7","value":"Etc/GMT+7"},{"name":"Etc/GMT+8","value":"Etc/GMT+8"},{"name":"Etc/GMT+9","value":"Etc/GMT+9"},{"name":"Etc/GMT-0","value":"Etc/GMT-0"},{"name":"Etc/GMT-1","value":"Etc/GMT-1"},{"name":"Etc/GMT-10","value":"Etc/GMT-10"},{"name":"Etc/GMT-11","value":"Etc/GMT-11"},{"name":"Etc/GMT-12","value":"Etc/GMT-12"},{"name":"Etc/GMT-13","value":"Etc/GMT-13"},{"name":"Etc/GMT-14","value":"Etc/GMT-14"},{"name":"Etc/GMT-2","value":"Etc/GMT-2"},{"name":"Etc/GMT-3","value":"Etc/GMT-3"},{"name":"Etc/GMT-4","value":"Etc/GMT-4"},{"name":"Etc/GMT-5","value":"Etc/GMT-5"},{"name":"Etc/GMT-6","value":"Etc/GMT-6"},{"name":"Etc/GMT-7","value":"Etc/GMT-7"},{"name":"Etc/GMT-8","value":"Etc/GMT-8"},{"name":"Etc/GMT-9","value":"Etc/GMT-9"},{"name":"Etc/GMT0","value":"Etc/GMT0"},{"name":"Etc/Greenwich","value":"Etc/Greenwich"},{"name":"Etc/UCT","value":"Etc/UCT"},{"name":"Etc/UTC","value":"Etc/UTC"},{"name":"Etc/Universal","value":"Etc/Universal"},{"name":"Etc/Zulu","value":"Etc/Zulu"},{"name":"Europe/Amsterdam","value":"Europe/Amsterdam"},{"name":"Europe/Andorra","value":"Europe/Andorra"},{"name":"Europe/Astrakhan","value":"Europe/Astrakhan"},{"name":"Europe/Athens","value":"Europe/Athens"},{"name":"Europe/Belfast","value":"Europe/Belfast"},{"name":"Europe/Belgrade","value":"Europe/Belgrade"},{"name":"Europe/Berlin","value":"Europe/Berlin"},{"name":"Europe/Bratislava","value":"Europe/Bratislava"},{"name":"Europe/Brussels","value":"Europe/Brussels"},{"name":"Europe/Bucharest","value":"Europe/Bucharest"},{"name":"Europe/Budapest","value":"Europe/Budapest"},{"name":"Europe/Busingen","value":"Europe/Busingen"},{"name":"Europe/Chisinau","value":"Europe/Chisinau"},{"name":"Europe/Copenhagen","value":"Europe/Copenhagen"},{"name":"Europe/Dublin","value":"Europe/Dublin"},{"name":"Europe/Gibraltar","value":"Europe/Gibraltar"},{"name":"Europe/Guernsey","value":"Europe/Guernsey"},{"name":"Europe/Helsinki","value":"Europe/Helsinki"},{"name":"Europe/Isle_of_Man","value":"Europe/Isle_of_Man"},{"name":"Europe/Istanbul","value":"Europe/Istanbul"},{"name":"Europe/Jersey","value":"Europe/Jersey"},{"name":"Europe/Kaliningrad","value":"Europe/Kaliningrad"},{"name":"Europe/Kiev","value":"Europe/Kiev"},{"name":"Europe/Kirov","value":"Europe/Kirov"},{"name":"Europe/Kyiv","value":"Europe/Kyiv"},{"name":"Europe/Lisbon","value":"Europe/Lisbon"},{"name":"Europe/Ljubljana","value":"Europe/Ljubljana"},{"name":"Europe/London","value":"Europe/London"},{"name":"Europe/Luxembourg","value":"Europe/Luxembourg"},{"name":"Europe/Madrid","value":"Europe/Madrid"},{"name":"Europe/Malta","value":"Europe/Malta"},{"name":"Europe/Mariehamn","value":"Europe/Mariehamn"},{"name":"Europe/Minsk","value":"Europe/Minsk"},{"name":"Europe/Monaco","value":"Europe/Monaco"},{"name":"Europe/Moscow","value":"Europe/Moscow"},{"name":"Europe/Nicosia","value":"Europe/Nicosia"},{"name":"Europe/Oslo","value":"Europe/Oslo"},{"name":"Europe/Paris","value":"Europe/Paris"},{"name":"Europe/Podgorica","value":"Europe/Podgorica"},{"name":"Europe/Prague","value":"Europe/Prague"},{"name":"Europe/Riga","value":"Europe/Riga"},{"name":"Europe/Rome","value":"Europe/Rome"},{"name":"Europe/Samara","value":"Europe/Samara"},{"name":"Europe/San_Marino","value":"Europe/San_Marino"},{"name":"Europe/Sarajevo","value":"Europe/Sarajevo"},{"name":"Europe/Saratov","value":"Europe/Saratov"},{"name":"Europe/Simferopol","value":"Europe/Simferopol"},{"name":"Europe/Skopje","value":"Europe/Skopje"},{"name":"Europe/Sofia","value":"Europe/Sofia"},{"name":"Europe/Stockholm","value":"Europe/Stockholm"},{"name":"Europe/Tallinn","value":"Europe/Tallinn"},{"name":"Europe/Tirane","value":"Europe/Tirane"},{"name":"Europe/Tiraspol","value":"Europe/Tiraspol"},{"name":"Europe/Ulyanovsk","value":"Europe/Ulyanovsk"},{"name":"Europe/Uzhgorod","value":"Europe/Uzhgorod"},{"name":"Europe/Vaduz","value":"Europe/Vaduz"},{"name":"Europe/Vatican","value":"Europe/Vatican"},{"name":"Europe/Vienna","value":"Europe/Vienna"},{"name":"Europe/Vilnius","value":"Europe/Vilnius"},{"name":"Europe/Volgograd","value":"Europe/Volgograd"},{"name":"Europe/Warsaw","value":"Europe/Warsaw"},{"name":"Europe/Zagreb","value":"Europe/Zagreb"},{"name":"Europe/Zaporozhye","value":"Europe/Zaporozhye"},{"name":"Europe/Zurich","value":"Europe/Zurich"},{"name":"GB","value":"GB"},{"name":"GB-Eire","value":"GB-Eire"},{"name":"GMT","value":"GMT"},{"name":"GMT+0","value":"GMT+0"},{"name":"GMT-0","value":"GMT-0"},{"name":"GMT0","value":"GMT0"},{"name":"Greenwich","value":"Greenwich"},{"name":"HST","value":"HST"},{"name":"Hongkong","value":"Hongkong"},{"name":"Iceland","value":"Iceland"},{"name":"Indian/Antananarivo","value":"Indian/Antananarivo"},{"name":"Indian/Chagos","value":"Indian/Chagos"},{"name":"Indian/Christmas","value":"Indian/Christmas"},{"name":"Indian/Cocos","value":"Indian/Cocos"},{"name":"Indian/Comoro","value":"Indian/Comoro"},{"name":"Indian/Kerguelen","value":"Indian/Kerguelen"},{"name":"Indian/Mahe","value":"Indian/Mahe"},{"name":"Indian/Maldives","value":"Indian/Maldives"},{"name":"Indian/Mauritius","value":"Indian/Mauritius"},{"name":"Indian/Mayotte","value":"Indian/Mayotte"},{"name":"Indian/Reunion","value":"Indian/Reunion"},{"name":"Iran","value":"Iran"},{"name":"Israel","value":"Israel"},{"name":"Jamaica","value":"Jamaica"},{"name":"Japan","value":"Japan"},{"name":"Kwajalein","value":"Kwajalein"},{"name":"Libya","value":"Libya"},{"name":"MET","value":"MET"},{"name":"MST","value":"MST"},{"name":"MST7MDT","value":"MST7MDT"},{"name":"Mexico/BajaNorte","value":"Mexico/BajaNorte"},{"name":"Mexico/BajaSur","value":"Mexico/BajaSur"},{"name":"Mexico/General","value":"Mexico/General"},{"name":"NZ","value":"NZ"},{"name":"NZ-CHAT","value":"NZ-CHAT"},{"name":"Navajo","value":"Navajo"},{"name":"PRC","value":"PRC"},{"name":"PST8PDT","value":"PST8PDT"},{"name":"Pacific/Apia","value":"Pacific/Apia"},{"name":"Pacific/Auckland","value":"Pacific/Auckland"},{"name":"Pacific/Bougainville","value":"Pacific/Bougainville"},{"name":"Pacific/Chatham","value":"Pacific/Chatham"},{"name":"Pacific/Chuuk","value":"Pacific/Chuuk"},{"name":"Pacific/Easter","value":"Pacific/Easter"},{"name":"Pacific/Efate","value":"Pacific/Efate"},{"name":"Pacific/Enderbury","value":"Pacific/Enderbury"},{"name":"Pacific/Fakaofo","value":"Pacific/Fakaofo"},{"name":"Pacific/Fiji","value":"Pacific/Fiji"},{"name":"Pacific/Funafuti","value":"Pacific/Funafuti"},{"name":"Pacific/Galapagos","value":"Pacific/Galapagos"},{"name":"Pacific/Gambier","value":"Pacific/Gambier"},{"name":"Pacific/Guadalcanal","value":"Pacific/Guadalcanal"},{"name":"Pacific/Guam","value":"Pacific/Guam"},{"name":"Pacific/Honolulu","value":"Pacific/Honolulu"},{"name":"Pacific/Johnston","value":"Pacific/Johnston"},{"name":"Pacific/Kanton","value":"Pacific/Kanton"},{"name":"Pacific/Kiritimati","value":"Pacific/Kiritimati"},{"name":"Pacific/Kosrae","value":"Pacific/Kosrae"},{"name":"Pacific/Kwajalein","value":"Pacific/Kwajalein"},{"name":"Pacific/Majuro","value":"Pacific/Majuro"},{"name":"Pacific/Marquesas","value":"Pacific/Marquesas"},{"name":"Pacific/Midway","value":"Pacific/Midway"},{"name":"Pacific/Nauru","value":"Pacific/Nauru"},{"name":"Pacific/Niue","value":"Pacific/Niue"},{"name":"Pacific/Norfolk","value":"Pacific/Norfolk"},{"name":"Pacific/Noumea","value":"Pacific/Noumea"},{"name":"Pacific/Pago_Pago","value":"Pacific/Pago_Pago"},{"name":"Pacific/Palau","value":"Pacific/Palau"},{"name":"Pacific/Pitcairn","value":"Pacific/Pitcairn"},{"name":"Pacific/Pohnpei","value":"Pacific/Pohnpei"},{"name":"Pacific/Ponape","value":"Pacific/Ponape"},{"name":"Pacific/Port_Moresby","value":"Pacific/Port_Moresby"},{"name":"Pacific/Rarotonga","value":"Pacific/Rarotonga"},{"name":"Pacific/Saipan","value":"Pacific/Saipan"},{"name":"Pacific/Samoa","value":"Pacific/Samoa"},{"name":"Pacific/Tahiti","value":"Pacific/Tahiti"},{"name":"Pacific/Tarawa","value":"Pacific/Tarawa"},{"name":"Pacific/Tongatapu","value":"Pacific/Tongatapu"},{"name":"Pacific/Truk","value":"Pacific/Truk"},{"name":"Pacific/Wake","value":"Pacific/Wake"},{"name":"Pacific/Wallis","value":"Pacific/Wallis"},{"name":"Pacific/Yap","value":"Pacific/Yap"},{"name":"Poland","value":"Poland"},{"name":"Portugal","value":"Portugal"},{"name":"ROC","value":"ROC"},{"name":"ROK","value":"ROK"},{"name":"Singapore","value":"Singapore"},{"name":"Turkey","value":"Turkey"},{"name":"UCT","value":"UCT"},{"name":"US/Alaska","value":"US/Alaska"},{"name":"US/Aleutian","value":"US/Aleutian"},{"name":"US/Arizona","value":"US/Arizona"},{"name":"US/Central","value":"US/Central"},{"name":"US/East-Indiana","value":"US/East-Indiana"},{"name":"US/Eastern","value":"US/Eastern"},{"name":"US/Hawaii","value":"US/Hawaii"},{"name":"US/Indiana-Starke","value":"US/Indiana-Starke"},{"name":"US/Michigan","value":"US/Michigan"},{"name":"US/Mountain","value":"US/Mountain"},{"name":"US/Pacific","value":"US/Pacific"},{"name":"US/Samoa","value":"US/Samoa"},{"name":"UTC","value":"UTC"},{"name":"Universal","value":"Universal"},{"name":"W-SU","value":"W-SU"},{"name":"WET","value":"WET"},{"name":"Zulu","value":"Zulu"}]},{"displayName":"Type","name":"type","type":"options","default":"singleInstance","options":[{"name":"Single Instance","value":"singleInstance"},{"name":"Occurrence","value":"occurrence"},{"name":"Exception","value":"exception"},{"name":"Series Master","value":"seriesMaster"}]}],"displayOptions":{"show":{"resource":["event"],"operation":["create"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["delete"]}}},{"displayName":"Event","name":"eventId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["calendarId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a event...","typeOptions":{"searchListMethod":"searchEvents","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/calendar/item/AAMkADlhOTA0M...UAAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Event URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["delete"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["get"]}}},{"displayName":"Event","name":"eventId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["calendarId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a event...","typeOptions":{"searchListMethod":"searchEvents","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/calendar/item/AAMkADlhOTA0M...UAAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Event URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["event"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["event"],"operation":["get"]}},"options":[{"name":"allowNewTimeProposals","value":"allowNewTimeProposals"},{"name":"attendees","value":"attendees"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"changeKey","value":"changeKey"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"end","value":"end"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"hideAttendees","value":"hideAttendees"},{"name":"iCalUId","value":"iCalUId"},{"name":"importance","value":"importance"},{"name":"isAllDay","value":"isAllDay"},{"name":"isCancelled","value":"isCancelled"},{"name":"isDraft","value":"isDraft"},{"name":"isOnlineMeeting","value":"isOnlineMeeting"},{"name":"isOrganizer","value":"isOrganizer"},{"name":"isReminderOn","value":"isReminderOn"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"location","value":"location"},{"name":"locations","value":"locations"},{"name":"onlineMeeting","value":"onlineMeeting"},{"name":"onlineMeetingProvider","value":"onlineMeetingProvider"},{"name":"onlineMeetingUrl","value":"onlineMeetingUrl"},{"name":"organizer","value":"organizer"},{"name":"originalEndTimeZone","value":"originalEndTimeZone"},{"name":"originalStartTimeZone","value":"originalStartTimeZone"},{"name":"recurrence","value":"recurrence"},{"name":"reminderMinutesBeforeStart","value":"reminderMinutesBeforeStart"},{"name":"responseRequested","value":"responseRequested"},{"name":"responseStatus","value":"responseStatus"},{"name":"sensitivity","value":"sensitivity"},{"name":"seriesMasterId","value":"seriesMasterId"},{"name":"showAs","value":"showAs"},{"name":"start","value":"start"},{"name":"subject","value":"subject"},{"name":"transactionId","value":"transactionId"},{"name":"type","value":"type"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"From All Calendars","name":"fromAllCalendars","type":"boolean","default":true,"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"fromAllCalendars":[false],"resource":["event"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["event"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["event"],"operation":["getAll"]}},"options":[{"name":"allowNewTimeProposals","value":"allowNewTimeProposals"},{"name":"attendees","value":"attendees"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"changeKey","value":"changeKey"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"end","value":"end"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"hideAttendees","value":"hideAttendees"},{"name":"iCalUId","value":"iCalUId"},{"name":"importance","value":"importance"},{"name":"isAllDay","value":"isAllDay"},{"name":"isCancelled","value":"isCancelled"},{"name":"isDraft","value":"isDraft"},{"name":"isOnlineMeeting","value":"isOnlineMeeting"},{"name":"isOrganizer","value":"isOrganizer"},{"name":"isReminderOn","value":"isReminderOn"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"location","value":"location"},{"name":"locations","value":"locations"},{"name":"onlineMeeting","value":"onlineMeeting"},{"name":"onlineMeetingProvider","value":"onlineMeetingProvider"},{"name":"onlineMeetingUrl","value":"onlineMeetingUrl"},{"name":"organizer","value":"organizer"},{"name":"originalEndTimeZone","value":"originalEndTimeZone"},{"name":"originalStartTimeZone","value":"originalStartTimeZone"},{"name":"recurrence","value":"recurrence"},{"name":"reminderMinutesBeforeStart","value":"reminderMinutesBeforeStart"},{"name":"responseRequested","value":"responseRequested"},{"name":"responseStatus","value":"responseStatus"},{"name":"sensitivity","value":"sensitivity"},{"name":"seriesMasterId","value":"seriesMasterId"},{"name":"showAs","value":"showAs"},{"name":"start","value":"start"},{"name":"subject","value":"subject"},{"name":"transactionId","value":"transactionId"},{"name":"type","value":"type"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. contains(subject,'Hello')","hint":"Search query to filter events. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."}],"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}}},{"displayName":"Calendar","name":"calendarId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a calendar...","typeOptions":{"searchListMethod":"searchCalendars","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["update"]}}},{"displayName":"Event","name":"eventId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["calendarId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a event...","typeOptions":{"searchListMethod":"searchEvents","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/calendar/item/AAMkADlhOTA0M...UAAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/calendar\\/item\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Event URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["event"],"operation":["update"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Categories","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"Description","name":"body","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Description Preview","name":"bodyPreview","type":"string","default":""},{"displayName":"End","name":"end","type":"dateTime","default":""},{"displayName":"Hide Attendees","name":"hideAttendees","type":"boolean","default":false,"description":"Whether to allow each attendee to only see themselves in the meeting request and meeting tracking list"},{"displayName":"Importance","name":"importance","type":"options","default":"low","options":[{"name":"Low","value":"low"},{"name":"Normal","value":"normal"},{"name":"High","value":"high"}]},{"displayName":"Is All Day","name":"isAllDay","type":"boolean","default":false},{"displayName":"Is Cancelled","name":"isCancelled","type":"boolean","default":false},{"displayName":"Is Draft","name":"isDraft","type":"boolean","default":false},{"displayName":"Is Online Meeting","name":"isOnlineMeeting","type":"boolean","default":true},{"displayName":"Sensitivity","name":"sensitivity","type":"options","default":"normal","options":[{"name":"Normal","value":"normal"},{"name":"Personal","value":"personal"},{"name":"Private","value":"private"},{"name":"Confidential","value":"confidential"}]},{"displayName":"Show As","name":"showAs","type":"options","default":"free","options":[{"name":"Busy","value":"busy"},{"name":"Free","value":"free"},{"name":"Oof","value":"oof"},{"name":"Tentative","value":"tentative"},{"name":"Working Elsewhere","value":"workingElsewhere"}]},{"displayName":"Start","name":"start","type":"dateTime","default":""},{"displayName":"Timezone","name":"timeZone","type":"string","default":""},{"displayName":"Title","name":"subject","type":"string","default":""},{"displayName":"Type","name":"type","type":"options","default":"singleInstance","options":[{"name":"Single Instance","value":"singleInstance"},{"name":"Occurrence","value":"occurrence"},{"name":"Exception","value":"exception"},{"name":"Series Master","value":"seriesMaster"}]}],"displayOptions":{"show":{"resource":["event"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folder"]}},"options":[{"name":"Create","value":"create","description":"Create a mail folder in the root folder of the user's mailbox","action":"Create a folder"},{"name":"Delete","value":"delete","description":"Delete a folder","action":"Delete a folder"},{"name":"Get","value":"get","description":"Retrieve a folder","action":"Get a folder"},{"name":"Get Many","value":"getAll","description":"Get many folders","action":"Get many folders"},{"name":"Update","value":"update","description":"Update a folder","action":"Update a folder"}],"default":"create"},{"displayName":"Name","name":"displayName","description":"Name of the folder","type":"string","required":true,"default":"","placeholder":"e.g. My Folder","displayOptions":{"show":{"resource":["folder"],"operation":["create"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Parent Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":false,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}]}],"displayOptions":{"show":{"resource":["folder"],"operation":["create"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folder"],"operation":["delete"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folder"],"operation":["get"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","options":[{"name":"Child Folder Count","value":"childFolderCount"},{"name":"Display Name","value":"displayName"},{"name":"Is Hidden","value":"isHidden"},{"name":"Parent Folder ID","value":"parentFolderId"},{"name":"Total Item Count","value":"totalItemCount"},{"name":"Unread Item Count","value":"unreadItemCount"}],"default":[]}],"displayOptions":{"show":{"resource":["folder"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["folder"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["folder"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"filter","type":"string","default":"","placeholder":"e.g. displayName eq 'My Folder'","hint":"Search query to filter folders. <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">More info</a>."}],"displayOptions":{"show":{"resource":["folder"],"operation":["getAll"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","options":[{"name":"Child Folder Count","value":"childFolderCount"},{"name":"Display Name","value":"displayName"},{"name":"Is Hidden","value":"isHidden"},{"name":"Parent Folder ID","value":"parentFolderId"},{"name":"Total Item Count","value":"totalItemCount"},{"name":"Unread Item Count","value":"unreadItemCount"}],"default":[]},{"displayName":"Include Child Folders","name":"includeChildFolders","type":"boolean","default":false,"description":"Whether to include child folders in the response"},{"displayName":"Parent Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":false,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"description":"The folder you want to search in"}],"displayOptions":{"show":{"resource":["folder"],"operation":["getAll"]}}},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folder"],"operation":["update"]}}},{"displayName":"Name","name":"displayName","description":"Name of the folder","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["folder"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folderMessage"]}},"options":[{"name":"Get Many","value":"getAll","description":"Retrieves the messages in a folder","action":"Get many folder messages"}],"default":"getAll"},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["folderMessage"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["folderMessage"],"operation":["getAll"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Fetching a lot of messages may take a long time. Consider using filters to speed things up","name":"filtersNotice","type":"notice","default":"","displayOptions":{"show":{"returnAll":[true],"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Filters","name":"filtersUI","type":"fixedCollection","placeholder":"Add Filters","default":{},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Filter By","name":"filterBy","type":"options","options":[{"name":"Filters","value":"filters"},{"name":"Search","value":"search"}],"default":"filters"},{"displayName":"Search","name":"search","type":"string","default":"","placeholder":"e.g. automation","description":"Only return messages that contains search term. Without specific message properties, the search is carried out on the default search properties of from, subject, and body. <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#search-parameter target=\"_blank\">More info</a>.","displayOptions":{"show":{"filterBy":["search"]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"filterBy":["filters"]}},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. isRead eq false","hint":"Search query to filter messages. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Has Attachments","name":"hasAttachments","type":"boolean","default":false},{"displayName":"Read Status","name":"readStatus","type":"options","default":"unread","hint":"Filter messages by whether they have been read or not","options":[{"name":"Unread and read messages","value":"both"},{"name":"Unread messages only","value":"unread"},{"name":"Read messages only","value":"read"}]},{"displayName":"Received After","name":"receivedAfter","type":"dateTime","default":"","description":"Get all messages received after the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Received Before","name":"receivedBefore","type":"dateTime","default":"","description":"Get all messages received before the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Sender","name":"sender","type":"string","default":"","description":"Sender name or email to filter by"}]}]}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}],"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["message"]}},"options":[{"name":"Delete","value":"delete","description":"Delete a message","action":"Delete a message"},{"name":"Get","value":"get","description":"Retrieve a single message","action":"Get a message"},{"name":"Get Many","value":"getAll","description":"List and search messages","action":"Get many messages"},{"name":"Move","value":"move","description":"Move a message to a folder","action":"Move a message"},{"name":"Reply","value":"reply","description":"Create a reply to a message","action":"Reply to a message"},{"name":"Send","value":"send","description":"Send a message","action":"Send a message"},{"name":"Update","value":"update","description":"Update a message","action":"Update a message"}],"default":"send"},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["delete"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["get"]}}},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["message"],"operation":["get"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["message"],"operation":["get"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"},{"displayName":"Get MIME Content","name":"getMimeContent","type":"fixedCollection","default":{"values":{"binaryPropertyName":"data"}},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Put Output in Field","name":"binaryPropertyName","type":"string","default":"","hint":"The name of the output field to put the binary file data in"},{"displayName":"File Name","name":"outputFileName","type":"string","placeholder":"message","default":"","description":"Optional name of the output file, if not set message ID is used"}]}]}],"displayOptions":{"show":{"resource":["message"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["message"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}],"displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"],"resource":["message"],"operation":["getAll"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Fetching a lot of messages may take a long time. Consider using filters to speed things up","name":"filtersNotice","type":"notice","default":"","displayOptions":{"show":{"returnAll":[true],"resource":["message"],"operation":["getAll"]}}},{"displayName":"Filters","name":"filtersUI","type":"fixedCollection","placeholder":"Add Filters","default":{},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Filter By","name":"filterBy","type":"options","options":[{"name":"Filters","value":"filters"},{"name":"Search","value":"search"}],"default":"filters"},{"displayName":"Search","name":"search","type":"string","default":"","placeholder":"e.g. automation","description":"Only return messages that contains search term. Without specific message properties, the search is carried out on the default search properties of from, subject, and body. <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#search-parameter target=\"_blank\">More info</a>.","displayOptions":{"show":{"filterBy":["search"]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"filterBy":["filters"]}},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. isRead eq false","hint":"Search query to filter messages. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Has Attachments","name":"hasAttachments","type":"boolean","default":false},{"displayName":"Folders to Exclude","name":"foldersToExclude","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getFolders"},"default":[],"description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Folders to Include","name":"foldersToInclude","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getFolders"},"default":[],"description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Read Status","name":"readStatus","type":"options","default":"unread","hint":"Filter messages by whether they have been read or not","options":[{"name":"Unread and read messages","value":"both"},{"name":"Unread messages only","value":"unread"},{"name":"Read messages only","value":"read"}]},{"displayName":"Received After","name":"receivedAfter","type":"dateTime","default":"","description":"Get all messages received after the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Received Before","name":"receivedBefore","type":"dateTime","default":"","description":"Get all messages received before the specified date. In an expression you can set date using string in ISO format or a timestamp in miliseconds."},{"displayName":"Sender","name":"sender","type":"string","default":"","description":"Sender name or email to filter by"}]}]}],"displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}],"displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["move"]}}},{"displayName":"Parent Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["move"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Reply to Sender Only","name":"replyToSenderOnly","type":"boolean","default":false,"description":"Whether to reply to the sender only or to the entire list of recipients","displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Message","name":"message","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":"","displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"replyToSenderOnly":[true],"resource":["message"],"operation":["reply"]}},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Input Data Field Name","name":"binaryPropertyName","type":"string","default":"","placeholder":"e.g. data","hint":"The name of the input field containing the binary file data to be attached"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","default":""},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Save as Draft","name":"saveAsDraft","description":"Whether to save the message as a draft. If false, the message is sent immediately.","type":"boolean","default":false}],"displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":"","displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":"","displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Input Data Field Name","name":"binaryPropertyName","type":"string","default":"","placeholder":"e.g. data","hint":"The name of the input field containing the binary file data to be attached"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox from which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","default":""},{"displayName":"Save To Sent Items","name":"saveToSentItems","description":"Whether to save the message in Sent Items","type":"boolean","default":true}],"displayOptions":{"show":{"resource":["message"],"operation":["send"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["message"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"BCC Recipients","name":"bccRecipients","description":"Comma-separated list of email addresses of BCC recipients","type":"string","default":""},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategoriesNames"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Comma-separated list of email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"Folder","name":"folderId","type":"resourceLocator","default":{"mode":"list","value":""},"required":false,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a folder...","typeOptions":{"searchListMethod":"searchFolders","searchable":true}},{"displayName":"Link","name":"url","type":"string","placeholder":"e.g. https://outlook.office365.com/mail/AAMkADlhOT...AAA%3D","extractValue":{"type":"regex","regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)"},"validation":[{"type":"regex","properties":{"regex":"https:\\/\\/outlook\\.office365\\.com\\/mail\\/([A-Za-z0-9%]+)(?:\\/.*|)","errorMessage":"Not a valid Outlook Folder URL"}}]},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}]},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Normal"},{"displayName":"Is Read","name":"isRead","description":"Whether the message must be marked as read","type":"boolean","default":false},{"displayName":"Message","name":"bodyContent","description":"Message body content","type":"string","typeOptions":{"rows":2},"default":""},{"displayName":"Message Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"To","name":"toRecipients","description":"Comma-separated list of email addresses of recipients","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email address to use when replying","type":"string","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""}],"displayOptions":{"show":{"resource":["message"],"operation":["update"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["messageAttachment"]}},"options":[{"name":"Add","value":"add","description":"Add an attachment to a message","action":"Add an attachment"},{"name":"Download","value":"download","description":"Download an attachment from a message","action":"Download an attachment"},{"name":"Get","value":"get","description":"Retrieve information about an attachment of a message","action":"Get an attachment"},{"name":"Get Many","value":"getAll","description":"Retrieve information about the attachments of a message","action":"Get many attachments"}],"default":"add"},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}}},{"displayName":"Input Data Field Name","name":"binaryPropertyName","hint":"The name of the input field containing the binary file data to be attached","type":"string","required":true,"default":"data","placeholder":"e.g. data","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"File Name","name":"fileName","description":"Filename of the attachment. If not set will the file-name of the binary property be used, if it exists.","type":"string","default":""}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download"]}}},{"displayName":"Attachment","name":"attachmentId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["messageId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a attachment...","typeOptions":{"searchListMethod":"searchAttachments","searchable":false}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download"]}}},{"displayName":"Put Output in Field","name":"binaryPropertyName","hint":"The name of the output field to put the binary file data in","type":"string","required":true,"default":"data","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get"]}}},{"displayName":"Attachment","name":"attachmentId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"typeOptions":{"loadOptionsDependsOn":["messageId.value"]},"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a attachment...","typeOptions":{"searchListMethod":"searchAttachments","searchable":false}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","default":[],"options":[{"name":"contentType","value":"contentType"},{"name":"isInline","value":"isInline"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"name","value":"name"},{"name":"size","value":"size"}]}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get"]}}},{"displayName":"Message","name":"messageId","type":"resourceLocator","default":{"mode":"list","value":""},"required":true,"modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a message...","typeOptions":{"searchListMethod":"searchMessages","searchable":true}},{"displayName":"ID","name":"id","type":"string","placeholder":"e.g. AAAkAAAhAAA0BBc5LLLwOOOtNNNkZS05Nz..."}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"returnAll":[false],"resource":["messageAttachment"],"operation":["getAll"]}},"typeOptions":{"minValue":1},"default":100,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","default":[],"options":[{"name":"contentType","value":"contentType"},{"name":"isInline","value":"isInline"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"name","value":"name"},{"name":"size","value":"size"}]}],"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}}}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/Outlook/outlook.svg","codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]},"alias":["email"]}},
|
|
259
260
|
{"displayName":"Microsoft Outlook","name":"n8n-nodes-base.microsoftOutlook","group":["transform"],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Microsoft Outlook API","defaultVersion":2,"version":1,"defaults":{"name":"Microsoft Outlook"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"microsoftOutlookOAuth2Api","required":true}],"properties":[{"displayName":"<strong>New node version available:</strong> get the latest version with added features from the nodes panel.","name":"oldVersionNotice","type":"notice","default":""},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"default":"message","options":[{"name":"Draft","value":"draft"},{"name":"Folder","value":"folder"},{"name":"Folder Message","value":"folderMessage"},{"name":"Message","value":"message"},{"name":"Message Attachment","value":"messageAttachment"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["draft"]}},"options":[{"name":"Create","value":"create","description":"Create a new email draft","action":"Create a draft"},{"name":"Delete","value":"delete","description":"Delete a draft","action":"Delete a draft"},{"name":"Get","value":"get","description":"Get a single draft","action":"Get a draft"},{"name":"Send","value":"send","description":"Send an existing draft message","action":"Send a draft"},{"name":"Update","value":"update","description":"Update a draft","action":"Update a draft"}],"default":"create"},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["draft"],"operation":["delete","get","send","update"]}}},{"displayName":"Subject","name":"subject","description":"The subject of the message","displayOptions":{"show":{"resource":["draft"],"operation":["create"]}},"type":"string","default":""},{"displayName":"Body Content","name":"bodyContent","description":"Message body content","type":"string","displayOptions":{"show":{"resource":["draft"],"operation":["create"]}},"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["draft"],"operation":["create"]}},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Binary Property Name","name":"binaryPropertyName","type":"string","default":"","description":"Name of the binary property containing the data to be added to the email as an attachment"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Email addresses of BCC recipients","type":"string","default":""},{"displayName":"Body Content Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategories"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Low"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Recipients","name":"toRecipients","description":"Email addresses of recipients. Multiple can be added separated by comma.","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email addresses to use when replying","type":"string","default":""}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["draft"],"operation":["send"]}},"options":[{"displayName":"Recipients","name":"recipients","description":"Email addresses of recipients. Mutiple can be set separated by comma.","type":"string","default":""}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["message"]}},"options":[{"name":"Delete","value":"delete","description":"Delete a message","action":"Delete a message"},{"name":"Get","value":"get","description":"Get a single message","action":"Get a message"},{"name":"Get Many","value":"getAll","description":"Get many messages in the signed-in user's mailbox","action":"Get many messages"},{"name":"Get MIME Content","value":"getMime","description":"Get MIME content of a message","action":"Get MIME Content of a message"},{"name":"Move","value":"move","description":"Move a message","action":"Move a message"},{"name":"Reply","value":"reply","description":"Create reply to a message","action":"Reply to a message"},{"name":"Send","value":"send","description":"Send a message","action":"Send a message"},{"name":"Update","value":"update","description":"Update a message","action":"Update a message"}],"default":"send"},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["addAttachment","delete","get","getAttachment","getMime","move","update","reply"]}}},{"displayName":"Reply Type","name":"replyType","type":"options","options":[{"name":"Reply","value":"reply"},{"name":"Reply All","value":"replyAll"}],"default":"reply","required":true,"displayOptions":{"show":{"resource":["message"],"operation":["reply"]}}},{"displayName":"Comment","name":"comment","description":"A comment to include. Can be an empty string.","displayOptions":{"show":{"resource":["message"],"operation":["reply"]}},"type":"string","default":""},{"displayName":"Send","name":"send","description":"Whether to send the reply message directly. If not set, it will be saved as draft.","displayOptions":{"show":{"resource":["message"],"operation":["reply"]}},"type":"boolean","default":true},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["message"],"operation":["reply"],"replyType":["reply"]}},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Binary Property Name","name":"binaryPropertyName","type":"string","default":"","description":"Name of the binary property containing the data to be added to the email as an attachment"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Email addresses of BCC recipients","type":"string","default":""},{"displayName":"Body Content","name":"bodyContent","description":"Message body content","type":"string","default":""},{"displayName":"Body Content Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"CC Recipients","name":"ccRecipients","description":"Email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Low"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Recipients","name":"toRecipients","description":"Email addresses of recipients. Multiple can be added separated by comma.","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email addresses to use when replying","type":"string","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["message"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["message"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Subject","name":"subject","description":"The subject of the message","displayOptions":{"show":{"resource":["message"],"operation":["create","send"]}},"type":"string","default":""},{"displayName":"Body Content","name":"bodyContent","description":"Message body content","type":"string","displayOptions":{"show":{"resource":["message"],"operation":["create","send"]}},"default":""},{"displayName":"Recipients","name":"toRecipients","description":"Email addresses of recipients. Multiple can be added separated by comma.","type":"string","displayOptions":{"show":{"resource":["message"],"operation":["send"]}},"required":true,"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["message"],"operation":["send"]}},"options":[{"displayName":"Attachments","name":"attachments","type":"fixedCollection","placeholder":"Add Attachment","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"attachments","displayName":"Attachment","values":[{"displayName":"Binary Property Name","name":"binaryPropertyName","type":"string","default":"","description":"Name of the binary property containing the data to be added to the email as an attachment"}]}]},{"displayName":"BCC Recipients","name":"bccRecipients","description":"Email addresses of BCC recipients","type":"string","default":""},{"displayName":"Body Content Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategories"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Low"},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Recipients","name":"toRecipients","description":"Email addresses of recipients. Multiple can be added separated by comma.","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email addresses to use when replying","type":"string","default":""},{"displayName":"Save To Sent Items","name":"saveToSentItems","description":"Whether to save the message in Sent Items","type":"boolean","default":true}]},{"displayName":"Put Output File in Field","name":"binaryPropertyName","hint":"The name of the output binary field to put the file in","type":"string","required":true,"default":"data","displayOptions":{"show":{"resource":["message"],"operation":["getMime"]}}},{"displayName":"Folder ID","name":"folderId","description":"Target Folder ID","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["message"],"operation":["move"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["messageAttachment"]}},"options":[{"name":"Add","value":"add","description":"Add an attachment to a message","action":"Add a message attachment"},{"name":"Download","value":"download","description":"Download attachment content","action":"Download a message attachment"},{"name":"Get","value":"get","description":"Get an attachment from a message","action":"Get a message attachment"},{"name":"Get Many","value":"getAll","description":"Get many message's attachments","action":"Get many message attachments"}],"default":"add"},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add","download","get","getAll"]}}},{"displayName":"Attachment ID","name":"attachmentId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["download","get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Put Output File in Field","name":"binaryPropertyName","hint":"The name of the output binary field to put the file in","type":"string","required":true,"default":"data","displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add","download"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["add"]}},"options":[{"displayName":"File Name","name":"fileName","description":"Filename of the attachment. If not set will the file-name of the binary property be used, if it exists.","type":"string","default":""}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["messageAttachment"],"operation":["get","getAll"]}},"options":[{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the response will contain. Multiple can be added separated by ,."},{"displayName":"Filter","name":"filter","type":"string","default":"","description":"Microsoft Graph API OData $filter query"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folder"]}},"options":[{"name":"Create","value":"create","description":"Create a new mail folder in the root folder of the user's mailbox","action":"Create a folder"},{"name":"Delete","value":"delete","description":"Delete a folder","action":"Delete a folder"},{"name":"Get","value":"get","description":"Get a single folder details","action":"Get a folder"},{"name":"Get Children","value":"getChildren","description":"Lists all child folders under the folder","action":"Get items in a folder"},{"name":"Get Many","value":"getAll","description":"Get many folders under the root folder of the signed-in user","action":"Get many folders"}],"default":"create"},{"displayName":"Folder ID","name":"folderId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["folder"],"operation":["delete","get","getChildren","update"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["folder"],"operation":["getAll","getChildren"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["folder"],"operation":["getAll","getChildren"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Type","name":"folderType","description":"Folder Type","type":"options","options":[{"name":"Folder","value":"folder"},{"name":"Search Folder","value":"searchFolder"}],"displayOptions":{"show":{"resource":["folder"],"operation":["create"]}},"default":"folder"},{"displayName":"Display Name","name":"displayName","description":"Name of the folder","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["folder"],"operation":["create"]}}},{"displayName":"Include Nested Folders","name":"includeNestedFolders","description":"Whether to include child folders in the search","type":"boolean","default":false,"displayOptions":{"show":{"resource":["folder"],"operation":["create"],"folderType":["searchFolder"]}}},{"displayName":"Source Folder IDs","name":"sourceFolderIds","description":"The mailbox folders that should be mined","type":"string","typeOptions":{"multipleValues":true},"default":[],"displayOptions":{"show":{"resource":["folder"],"operation":["create"],"folderType":["searchFolder"]}}},{"displayName":"Filter Query","name":"filterQuery","description":"The OData query to filter the messages","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["folder"],"operation":["create"],"folderType":["searchFolder"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["folder"],"operation":["get","getAll","getChildren"]}},"options":[{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the response will contain. Multiple can be added separated by ,."},{"displayName":"Filter","name":"filter","type":"string","default":"","description":"Microsoft Graph API OData $filter query. Information about the syntax can be found <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">here</a>."}]},{"displayName":"Update Fields","name":"updateFields","description":"Fields to update","type":"collection","default":{},"displayOptions":{"show":{"resource":["folder"],"operation":["update"]}},"options":[{"displayName":"Display Name","name":"displayName","description":"Name of the folder","type":"string","default":""},{"displayName":"Filter Query","name":"filterQuery","description":"The OData query to filter the messages. Only for search folders.","type":"string","default":""},{"displayName":"Include Nested Folders","name":"includeNestedFolders","description":"Whether to include child folders in the search. Only for search folders.","type":"boolean","default":false},{"displayName":"Source Folder IDs","name":"sourceFolderIds","description":"The mailbox folders that should be mined. Only for search folders.","type":"string","typeOptions":{"multipleValues":true},"default":[]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["folderMessage"]}},"options":[{"name":"Get Many","value":"getAll","description":"Get many messages in a folder","action":"Get many folder messages"}],"default":"create"},{"displayName":"Folder ID","name":"folderId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["folderMessage"],"operation":["getAll"]}},"options":[{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the response will contain. Multiple can be added separated by ,."},{"displayName":"Filter","name":"filter","type":"string","default":"","description":"Microsoft Graph API OData $filter query. Information about the syntax can be found <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">here</a>."}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["draft","message"],"operation":["get","getAll"]}},"options":[{"displayName":"Attachments Prefix","name":"dataPropertyAttachmentsPrefixName","type":"string","default":"attachment_","description":"Prefix for name of the binary property to which to write the attachments. An index starting with 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\""},{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the response will contain. Multiple can be added separated by comma."},{"displayName":"Filter","name":"filter","type":"string","default":"","placeholder":"isRead eq false","description":"Microsoft Graph API OData $filter query. Information about the syntax can be found <a href=\"https://docs.microsoft.com/en-us/graph/query-parameters#filter-parameter\">here</a>."}]},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["draft","message"],"operation":["update"]}},"options":[{"displayName":"BCC Recipients","name":"bccRecipients","description":"Email addresses of BCC recipients","type":"string","default":""},{"displayName":"Body Content","name":"bodyContent","description":"Message body content","type":"string","default":""},{"displayName":"Body Content Type","name":"bodyContentType","description":"Message body content type","type":"options","options":[{"name":"HTML","value":"html"},{"name":"Text","value":"Text"}],"default":"html"},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCategories"},"default":[]},{"displayName":"CC Recipients","name":"ccRecipients","description":"Email addresses of CC recipients","type":"string","default":""},{"displayName":"Custom Headers","name":"internetMessageHeaders","placeholder":"Add Header","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"headers","displayName":"Header","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Name of the header"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value to set for the header"}]}]},{"displayName":"From","name":"from","description":"The owner of the mailbox which the message is sent. Must correspond to the actual mailbox used.","type":"string","default":""},{"displayName":"Importance","name":"importance","description":"The importance of the message","type":"options","options":[{"name":"Low","value":"Low"},{"name":"Normal","value":"Normal"},{"name":"High","value":"High"}],"default":"Low"},{"displayName":"Is Read","name":"isRead","description":"Whether the message has been read","type":"boolean","default":false},{"displayName":"Read Receipt Requested","name":"isReadReceiptRequested","description":"Whether a read receipt is requested for the message","type":"boolean","default":false},{"displayName":"Recipients","name":"toRecipients","description":"Email addresses of recipients. Multiple can be added separated by comma.","type":"string","default":""},{"displayName":"Reply To","name":"replyTo","description":"Email addresses to use when replying","type":"string","default":""},{"displayName":"Subject","name":"subject","description":"The subject of the message","type":"string","default":""}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/Outlook/outlook.svg","codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.microsoftoutlook/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]},"alias":["email"]}},
|
|
260
261
|
{"displayName":"Microsoft Outlook Trigger","name":"n8n-nodes-base.microsoftOutlookTrigger","group":["trigger"],"version":1,"description":"Fetches emails from Microsoft Outlook and starts the workflow on specified polling intervals.","subtitle":"={{\"Microsoft Outlook Trigger\"}}","defaults":{"name":"Microsoft Outlook Trigger"},"credentials":[{"name":"microsoftOutlookOAuth2Api","required":true}],"polling":true,"inputs":[],"outputs":["main"],"properties":[{"displayName":"Poll Times","name":"pollTimes","type":"fixedCollection","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Poll Time"},"default":{"item":[{"mode":"everyMinute"}]},"description":"Time at which polling should occur","placeholder":"Add Poll Time","options":[{"name":"item","displayName":"Item","values":[{"displayName":"Mode","name":"mode","type":"options","options":[{"name":"Every Minute","value":"everyMinute"},{"name":"Every Hour","value":"everyHour"},{"name":"Every Day","value":"everyDay"},{"name":"Every Week","value":"everyWeek"},{"name":"Every Month","value":"everyMonth"},{"name":"Every X","value":"everyX"},{"name":"Custom","value":"custom"}],"default":"everyDay","description":"How often to trigger."},{"displayName":"Hour","name":"hour","type":"number","typeOptions":{"minValue":0,"maxValue":23},"displayOptions":{"hide":{"mode":["custom","everyHour","everyMinute","everyX"]}},"default":14,"description":"The hour of the day to trigger (24h format)"},{"displayName":"Minute","name":"minute","type":"number","typeOptions":{"minValue":0,"maxValue":59},"displayOptions":{"hide":{"mode":["custom","everyMinute","everyX"]}},"default":0,"description":"The minute of the day to trigger"},{"displayName":"Day of Month","name":"dayOfMonth","type":"number","displayOptions":{"show":{"mode":["everyMonth"]}},"typeOptions":{"minValue":1,"maxValue":31},"default":1,"description":"The day of the month to trigger"},{"displayName":"Weekday","name":"weekday","type":"options","displayOptions":{"show":{"mode":["everyWeek"]}},"options":[{"name":"Monday","value":"1"},{"name":"Tuesday","value":"2"},{"name":"Wednesday","value":"3"},{"name":"Thursday","value":"4"},{"name":"Friday","value":"5"},{"name":"Saturday","value":"6"},{"name":"Sunday","value":"0"}],"default":"1","description":"The weekday to trigger"},{"displayName":"Cron Expression","name":"cronExpression","type":"string","displayOptions":{"show":{"mode":["custom"]}},"default":"* * * * * *","description":"Use custom cron expression. Values and ranges as follows:<ul><li>Seconds: 0-59</li><li>Minutes: 0 - 59</li><li>Hours: 0 - 23</li><li>Day of Month: 1 - 31</li><li>Months: 0 - 11 (Jan - Dec)</li><li>Day of Week: 0 - 6 (Sun - Sat)</li></ul>"},{"displayName":"Value","name":"value","type":"number","typeOptions":{"minValue":0,"maxValue":1000},"displayOptions":{"show":{"mode":["everyX"]}},"default":2,"description":"All how many X minutes/hours it should trigger"},{"displayName":"Unit","name":"unit","type":"options","displayOptions":{"show":{"mode":["everyX"]}},"options":[{"name":"Minutes","value":"minutes"},{"name":"Hours","value":"hours"}],"default":"hours","description":"If it should trigger all X minutes or hours"}]}]},{"displayName":"Trigger On","name":"event","type":"options","default":"messageReceived","options":[{"name":"Message Received","value":"messageReceived"}]},{"displayName":"Output","name":"output","type":"options","default":"simple","options":[{"name":"Simplified","value":"simple"},{"name":"Raw","value":"raw"},{"name":"Select Included Fields","value":"fields"}]},{"displayName":"Fields","name":"fields","type":"multiOptions","description":"The fields to add to the output","displayOptions":{"show":{"output":["fields"]}},"options":[{"name":"bccRecipients","value":"bccRecipients"},{"name":"body","value":"body"},{"name":"bodyPreview","value":"bodyPreview"},{"name":"categories","value":"categories"},{"name":"ccRecipients","value":"ccRecipients"},{"name":"changeKey","value":"changeKey"},{"name":"conversationId","value":"conversationId"},{"name":"createdDateTime","value":"createdDateTime"},{"name":"flag","value":"flag"},{"name":"from","value":"from"},{"name":"hasAttachments","value":"hasAttachments"},{"name":"importance","value":"importance"},{"name":"inferenceClassification","value":"inferenceClassification"},{"name":"internetMessageId","value":"internetMessageId"},{"name":"isDeliveryReceiptRequested","value":"isDeliveryReceiptRequested"},{"name":"isDraft","value":"isDraft"},{"name":"isRead","value":"isRead"},{"name":"isReadReceiptRequested","value":"isReadReceiptRequested"},{"name":"lastModifiedDateTime","value":"lastModifiedDateTime"},{"name":"parentFolderId","value":"parentFolderId"},{"name":"receivedDateTime","value":"receivedDateTime"},{"name":"replyTo","value":"replyTo"},{"name":"sender","value":"sender"},{"name":"sentDateTime","value":"sentDateTime"},{"name":"subject","value":"subject"},{"name":"toRecipients","value":"toRecipients"},{"name":"webLink","value":"webLink"}],"default":[]},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Filter Query","name":"custom","type":"string","default":"","placeholder":"e.g. isRead eq false","hint":"Search query to filter messages. <a href=\"https://learn.microsoft.com/en-us/graph/filter-query-parameter\">More info</a>."},{"displayName":"Has Attachments","name":"hasAttachments","type":"boolean","default":false},{"displayName":"Folders to Exclude","name":"foldersToExclude","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getFolders"},"default":[],"description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Folders to Include","name":"foldersToInclude","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getFolders"},"default":[],"description":"Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Read Status","name":"readStatus","type":"options","default":"unread","hint":"Filter messages by whether they have been read or not","options":[{"name":"Unread and read messages","value":"both"},{"name":"Unread messages only","value":"unread"},{"name":"Read messages only","value":"read"}]},{"displayName":"Sender","name":"sender","type":"string","default":"","description":"Sender name or email to filter by"}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Attachments Prefix","name":"attachmentsPrefix","type":"string","default":"attachment_","description":"Prefix for name of the output fields to put the binary files data in. An index starting from 0 will be added. So if name is \"attachment_\" the first attachment is saved to \"attachment_0\"."},{"displayName":"Download Attachments","name":"downloadAttachments","type":"boolean","default":false,"description":"Whether the message's attachments will be downloaded and included in the output"}]}],"codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.microsoftoutlooktrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoft/"}]},"alias":["email"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/Outlook/outlook.svg"},
|
|
261
262
|
{"displayName":"Microsoft SQL","name":"n8n-nodes-base.microsoftSql","group":["input"],"version":[1,1.1],"description":"Get, add and update data in Microsoft SQL","defaults":{"name":"Microsoft SQL"},"inputs":["main"],"outputs":["main"],"usableAsTool":true,"parameterPane":"wide","credentials":[{"name":"microsoftSql","required":true,"testedBy":"microsoftSqlConnectionTest"}],"properties":[{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Execute Query","value":"executeQuery","description":"Execute an SQL query","action":"Execute a SQL query"},{"name":"Insert","value":"insert","description":"Insert rows in database","action":"Insert rows in database"},{"name":"Update","value":"update","description":"Update rows in database","action":"Update rows in database"},{"name":"Delete","value":"delete","description":"Delete rows in database","action":"Delete rows in database"}],"default":"insert"},{"displayName":"Query","name":"query","type":"string","noDataExpression":true,"typeOptions":{"editor":"sqlEditor","sqlDialect":"MSSQL"},"displayOptions":{"show":{"operation":["executeQuery"]}},"default":"","placeholder":"SELECT id, name FROM product WHERE id < 40","required":true,"description":"The SQL query to execute"},{"displayName":"Table","name":"table","type":"string","displayOptions":{"show":{"operation":["insert"]}},"default":"","required":true,"description":"Name of the table in which to insert data to"},{"displayName":"Columns","name":"columns","type":"string","requiresDataPath":"multiple","displayOptions":{"show":{"operation":["insert"]}},"default":"","placeholder":"id,name,description","description":"Comma-separated list of the properties which should used as columns for the new rows"},{"displayName":"Table","name":"table","type":"string","displayOptions":{"show":{"operation":["update"]}},"default":"","required":true,"description":"Name of the table in which to update data in"},{"displayName":"Update Key","name":"updateKey","type":"string","requiresDataPath":"single","displayOptions":{"show":{"operation":["update"]}},"default":"id","required":true,"description":"Name of the property which decides which rows in the database should be updated. Normally that would be \"id\"."},{"displayName":"Columns","name":"columns","type":"string","requiresDataPath":"multiple","displayOptions":{"show":{"operation":["update"]}},"default":"","placeholder":"name,description","description":"Comma-separated list of the properties which should used as columns for rows to update"},{"displayName":"Table","name":"table","type":"string","displayOptions":{"show":{"operation":["delete"]}},"default":"","required":true,"description":"Name of the table in which to delete data"},{"displayName":"Delete Key","name":"deleteKey","type":"string","requiresDataPath":"single","displayOptions":{"show":{"operation":["delete"]}},"default":"id","required":true,"description":"Name of the property which decides which rows in the database should be deleted. Normally that would be \"id\"."}],"codex":{"categories":["Development","Data & Storage"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.microsoftsql/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/microsoftSql/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Microsoft/Sql/mssql.svg"},
|
|
@@ -277,7 +278,7 @@
|
|
|
277
278
|
{"displayName":"n8n","name":"n8n-nodes-base.n8n","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Handle events and perform actions on your n8n instance","defaults":{"name":"n8n"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"n8nApi","required":true}],"requestDefaults":{"returnFullResponse":true,"baseURL":"={{ $credentials.baseUrl.replace(new RegExp(\"/$\"), \"\") }}","headers":{"Accept":"application/json","Content-Type":"application/json"}},"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Audit","value":"audit"},{"name":"Credential","value":"credential"},{"name":"Execution","value":"execution"},{"name":"Workflow","value":"workflow"}],"default":"workflow"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","displayOptions":{"show":{"resource":["audit"]}},"options":[{"name":"Generate","value":"generate","action":"Generate a security audit","description":"Generate a security audit for this n8n instance","routing":{"request":{"method":"POST","url":"/audit"}}}]},{"displayName":"Additional Options","name":"additionalOptions","type":"collection","placeholder":"Add Filter","displayOptions":{"show":{"resource":["audit"]}},"routing":{"request":{"body":{"additionalOptions":"={{ $value }}"}}},"default":{},"options":[{"displayName":"Categories","name":"categories","description":"Risk categories to include in the audit","type":"multiOptions","default":[],"options":[{"name":"Credentials","value":"credentials"},{"name":"Database","value":"database"},{"name":"Filesystem","value":"filesystem"},{"name":"Instance","value":"instance"},{"name":"Nodes","value":"nodes"}]},{"displayName":"Days Abandoned Workflow","name":"daysAbandonedWorkflow","description":"Days for a workflow to be considered abandoned if not executed","type":"number","default":90}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"create","displayOptions":{"show":{"resource":["credential"]}},"options":[{"name":"Create","value":"create","action":"Create a credential","routing":{"request":{"method":"POST","url":"/credentials"}}},{"name":"Delete","value":"delete","action":"Delete a credential","routing":{"request":{"method":"DELETE","url":"=/credentials/{{ $parameter.credentialId }}"}}},{"name":"Get Schema","value":"getSchema","action":"Get credential data schema for type","routing":{"request":{"method":"GET","url":"=/credentials/schema/{{ $parameter.credentialTypeName }}"}}}]},{"displayName":"Name","name":"name","type":"string","default":"","placeholder":"e.g. n8n account","required":true,"displayOptions":{"show":{"resource":["credential"],"operation":["create"]}},"routing":{"request":{"body":{"name":"={{ $value }}"}}},"description":"Name of the new credential"},{"displayName":"Credential Type","name":"credentialTypeName","type":"string","placeholder":"e.g. n8nApi","default":"","required":true,"displayOptions":{"show":{"resource":["credential"],"operation":["create"]}},"routing":{"request":{"body":{"type":"={{ $value }}"}}},"description":"The available types depend on nodes installed on the n8n instance. Some built-in types include e.g. 'githubApi', 'notionApi', and 'slackApi'."},{"displayName":"Data","name":"data","type":"json","default":"","placeholder":"// e.g. for n8nApi \n{\n \"apiKey\": \"my-n8n-api-key\",\n \"baseUrl\": \"https://<name>.app.n8n.cloud/api/v1\",\n}","required":true,"typeOptions":{"alwaysOpenEditWindow":true},"displayOptions":{"show":{"resource":["credential"],"operation":["create"]}},"routing":{"send":{"preSend":[null]}},"description":"A valid JSON object with properties required for this Credential Type. To see the expected format, you can use 'Get Schema' operation."},{"displayName":"Credential ID","name":"credentialId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["credential"],"operation":["delete"]}}},{"displayName":"Credential Type","name":"credentialTypeName","default":"","placeholder":"e.g. n8nApi","required":true,"type":"string","displayOptions":{"show":{"resource":["credential"],"operation":["getSchema"]}},"description":"The available types depend on nodes installed on the n8n instance. Some built-in types include e.g. 'githubApi', 'notionApi', and 'slackApi'."},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"getAll","displayOptions":{"show":{"resource":["execution"]}},"options":[{"name":"Get","value":"get","action":"Get an execution","routing":{"request":{"method":"GET","url":"=/executions/{{ $parameter.executionId }}"}}},{"name":"Get Many","value":"getAll","action":"Get many executions","routing":{"request":{"method":"GET","url":"/executions"},"send":{"paginate":true},"operations":{}}},{"name":"Delete","value":"delete","action":"Delete an execution","routing":{"request":{"method":"DELETE","url":"=/executions/{{ $parameter.executionId }}"}}}]},{"displayName":"Execution ID","name":"executionId","type":"string","required":true,"displayOptions":{"show":{"resource":["execution"],"operation":["delete"]}},"default":""},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"displayOptions":{"show":{"resource":["execution"],"operation":["getAll"]}},"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","default":100,"typeOptions":{"minValue":1,"maxValue":250},"displayOptions":{"show":{"resource":["execution"],"operation":["getAll"],"returnAll":[false]}},"routing":{"request":{"qs":{"limit":"={{ $value }}"}}},"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"resource":["execution"],"operation":["getAll"]}},"options":[{"displayName":"Workflow","name":"workflowId","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Workflow to filter the executions by","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a Workflow...","initType":"workflow","typeOptions":{"searchListMethod":"searchWorkflows","searchFilterRequired":false,"searchable":true}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://myinstance.app.n8n.cloud/workflow/1","validation":[{"type":"regex","properties":{"regex":".*/workflow/([0-9a-zA-Z]{1,})","errorMessage":"Not a valid Workflow URL"}}],"extractValue":{"type":"regex","regex":".*/workflow/([0-9a-zA-Z]{1,})"}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9a-zA-Z]{1,}","errorMessage":"Not a valid Workflow ID"}}],"placeholder":"1"}],"routing":{"send":{"type":"query","property":"workflowId","value":"={{ $value || undefined }}"}}},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Error","value":"error"},{"name":"Success","value":"success"},{"name":"Waiting","value":"waiting"}],"default":"success","routing":{"send":{"type":"query","property":"status","value":"={{ $value }}"}},"description":"Status to filter the executions by"}]},{"displayName":"Options","name":"options","type":"collection","default":{},"placeholder":"Add option","displayOptions":{"show":{"resource":["execution"],"operation":["getAll"]}},"options":[{"displayName":"Include Execution Details","name":"activeWorkflows","type":"boolean","default":false,"routing":{"send":{"type":"query","property":"includeData","value":"={{ $value }}"}},"description":"Whether to include the detailed execution data"}]},{"displayName":"Execution ID","name":"executionId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["execution"],"operation":["get"]}}},{"displayName":"Options","name":"options","type":"collection","default":{},"placeholder":"Add option","displayOptions":{"show":{"resource":["execution"],"operation":["get"]}},"options":[{"displayName":"Include Execution Details","name":"activeWorkflows","type":"boolean","default":false,"routing":{"send":{"type":"query","property":"includeData","value":"={{ $value }}"}},"description":"Whether to include the detailed execution data"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"getAll","displayOptions":{"show":{"resource":["workflow"]}},"options":[{"name":"Activate","value":"activate","action":"Activate a workflow"},{"name":"Create","value":"create","action":"Create a workflow","routing":{"request":{"method":"POST","url":"/workflows"}}},{"name":"Deactivate","value":"deactivate","action":"Deactivate a workflow"},{"name":"Delete","value":"delete","action":"Delete a workflow"},{"name":"Get","value":"get","action":"Get a workflow"},{"name":"Get Many","value":"getAll","action":"Get many workflows","routing":{"request":{"method":"GET","url":"/workflows"},"send":{"paginate":true},"operations":{}}},{"name":"Update","value":"update","action":"Update a workflow"}]},{"displayName":"Workflow","name":"workflowId","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Workflow to filter the executions by","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a Workflow...","initType":"workflow","typeOptions":{"searchListMethod":"searchWorkflows","searchFilterRequired":false,"searchable":true}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://myinstance.app.n8n.cloud/workflow/1","validation":[{"type":"regex","properties":{"regex":".*/workflow/([0-9a-zA-Z]{1,})","errorMessage":"Not a valid Workflow URL"}}],"extractValue":{"type":"regex","regex":".*/workflow/([0-9a-zA-Z]{1,})"}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9a-zA-Z]{1,}","errorMessage":"Not a valid Workflow ID"}}],"placeholder":"1"}],"required":true,"displayOptions":{"show":{"resource":["workflow"],"operation":["activate"]}},"routing":{"request":{"method":"POST","url":"=/workflows/{{ $value }}/activate"}}},{"displayName":"Workflow Object","name":"workflowObject","type":"json","default":"{ \"name\": \"My workflow\", \"nodes\": [], \"connections\": {}, \"settings\": {} }","placeholder":"{\n \"name\": \"My workflow\",\n \"nodes\": [],\n \"connections\": {},\n \"settings\": {}\n}","required":true,"typeOptions":{"alwaysOpenEditWindow":true},"displayOptions":{"show":{"resource":["workflow"],"operation":["create"]}},"routing":{"send":{"preSend":[null,null]}},"description":"A valid JSON object with required fields: 'name', 'nodes', 'connections' and 'settings'. More information can be found in the <a href=\"https://docs.n8n.io/api/api-reference/#tag/Workflow/paths/~1workflows/post\">documentation</a>."},{"displayName":"Workflow","name":"workflowId","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Workflow to filter the executions by","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a Workflow...","initType":"workflow","typeOptions":{"searchListMethod":"searchWorkflows","searchFilterRequired":false,"searchable":true}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://myinstance.app.n8n.cloud/workflow/1","validation":[{"type":"regex","properties":{"regex":".*/workflow/([0-9a-zA-Z]{1,})","errorMessage":"Not a valid Workflow URL"}}],"extractValue":{"type":"regex","regex":".*/workflow/([0-9a-zA-Z]{1,})"}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9a-zA-Z]{1,}","errorMessage":"Not a valid Workflow ID"}}],"placeholder":"1"}],"required":true,"displayOptions":{"show":{"resource":["workflow"],"operation":["deactivate"]}},"routing":{"request":{"method":"POST","url":"=/workflows/{{ $value }}/deactivate"}}},{"displayName":"Workflow","name":"workflowId","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Workflow to filter the executions by","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a Workflow...","initType":"workflow","typeOptions":{"searchListMethod":"searchWorkflows","searchFilterRequired":false,"searchable":true}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://myinstance.app.n8n.cloud/workflow/1","validation":[{"type":"regex","properties":{"regex":".*/workflow/([0-9a-zA-Z]{1,})","errorMessage":"Not a valid Workflow URL"}}],"extractValue":{"type":"regex","regex":".*/workflow/([0-9a-zA-Z]{1,})"}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9a-zA-Z]{1,}","errorMessage":"Not a valid Workflow ID"}}],"placeholder":"1"}],"required":true,"displayOptions":{"show":{"resource":["workflow"],"operation":["delete"]}},"routing":{"request":{"method":"DELETE","url":"=/workflows/{{ $value }}"}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":true,"displayOptions":{"show":{"resource":["workflow"],"operation":["getAll"]}},"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","default":100,"typeOptions":{"minValue":1,"maxValue":250},"displayOptions":{"show":{"resource":["workflow"],"operation":["getAll"],"returnAll":[false]}},"routing":{"request":{"qs":{"limit":"={{ $value }}"}}},"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","default":{},"displayOptions":{"show":{"resource":["workflow"],"operation":["getAll"]}},"options":[{"displayName":"Return Only Active Workflows","name":"activeWorkflows","type":"boolean","default":true,"routing":{"request":{"qs":{"active":"={{ $value }}"}}}},{"displayName":"Tags","name":"tags","type":"string","default":"","routing":{"send":{"type":"query","property":"tags","value":"={{ $value !== \"\" ? $value : undefined }}"}},"description":"Include only workflows with these tags","hint":"Comma separated list of tags (empty value is ignored)"}]},{"displayName":"Workflow","name":"workflowId","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Workflow to filter the executions by","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a Workflow...","initType":"workflow","typeOptions":{"searchListMethod":"searchWorkflows","searchFilterRequired":false,"searchable":true}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://myinstance.app.n8n.cloud/workflow/1","validation":[{"type":"regex","properties":{"regex":".*/workflow/([0-9a-zA-Z]{1,})","errorMessage":"Not a valid Workflow URL"}}],"extractValue":{"type":"regex","regex":".*/workflow/([0-9a-zA-Z]{1,})"}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9a-zA-Z]{1,}","errorMessage":"Not a valid Workflow ID"}}],"placeholder":"1"}],"required":true,"displayOptions":{"show":{"resource":["workflow"],"operation":["get"]}},"routing":{"request":{"method":"GET","url":"=/workflows/{{ $value }}"}}},{"displayName":"Workflow","name":"workflowId","type":"resourceLocator","default":{"mode":"list","value":""},"description":"Workflow to filter the executions by","modes":[{"displayName":"From List","name":"list","type":"list","placeholder":"Select a Workflow...","initType":"workflow","typeOptions":{"searchListMethod":"searchWorkflows","searchFilterRequired":false,"searchable":true}},{"displayName":"By URL","name":"url","type":"string","placeholder":"https://myinstance.app.n8n.cloud/workflow/1","validation":[{"type":"regex","properties":{"regex":".*/workflow/([0-9a-zA-Z]{1,})","errorMessage":"Not a valid Workflow URL"}}],"extractValue":{"type":"regex","regex":".*/workflow/([0-9a-zA-Z]{1,})"}},{"displayName":"ID","name":"id","type":"string","validation":[{"type":"regex","properties":{"regex":"[0-9a-zA-Z]{1,}","errorMessage":"Not a valid Workflow ID"}}],"placeholder":"1"}],"required":true,"displayOptions":{"show":{"resource":["workflow"],"operation":["update"]}},"routing":{"request":{"method":"PUT","url":"=/workflows/{{ $value }}"}}},{"displayName":"Workflow Object","name":"workflowObject","type":"json","default":"","placeholder":"{\n \"name\": \"My workflow\",\n \"nodes\": [],\n \"connections\": {},\n \"settings\": {}\n}","required":true,"typeOptions":{"alwaysOpenEditWindow":true},"displayOptions":{"show":{"resource":["workflow"],"operation":["update"]}},"routing":{"send":{"preSend":[null,null]}},"description":"A valid JSON object with required fields: 'name', 'nodes', 'connections' and 'settings'. More information can be found in the <a href=\"https://docs.n8n.io/api/api-reference/#tag/Workflow/paths/~1workflows~1%7Bid%7D/put\">documentation</a>."},{"displayName":"Request Options","name":"requestOptions","type":"collection","isNodeSetting":true,"placeholder":"Add Option","default":{},"options":[{"displayName":"Batching","name":"batching","placeholder":"Add Batching","type":"fixedCollection","typeOptions":{"multipleValues":false},"default":{"batch":{}},"options":[{"displayName":"Batching","name":"batch","values":[{"displayName":"Items per Batch","name":"batchSize","type":"number","typeOptions":{"minValue":-1},"default":50,"description":"Input will be split in batches to throttle requests. -1 for disabled. 0 will be treated as 1."},{"displayName":"Batch Interval (ms)","name":"batchInterval","type":"number","typeOptions":{"minValue":0},"default":1000,"description":"Time (in milliseconds) between each batch of requests. 0 for disabled."}]}]},{"displayName":"Ignore SSL Issues","name":"allowUnauthorizedCerts","type":"boolean","noDataExpression":true,"default":false,"description":"Whether to accept the response even if SSL certificate validation is not possible"},{"displayName":"Proxy","name":"proxy","type":"string","default":"","placeholder":"e.g. http://myproxy:3128","description":"HTTP proxy to use. If authentication is required it can be defined as follow: http://username:password@myproxy:3128"},{"displayName":"Timeout","name":"timeout","type":"number","typeOptions":{"minValue":1},"default":10000,"description":"Time in ms to wait for the server to send response headers (and start the response body) before aborting the request"}]}],"codex":{"categories":["Development","Core Nodes"],"subcategories":{"Core Nodes":["Helpers","Other Trigger Nodes"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.n8n/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/api/authentication/"}]},"alias":["Workflow","Execution"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/N8n/n8n.svg"},
|
|
278
279
|
{"displayName":"Customer Datastore (n8n training)","name":"n8n-nodes-base.n8nTrainingCustomerDatastore","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"]}}","description":"Dummy node used for n8n training","defaults":{"name":"Customer Datastore (n8n training)"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Get One Person","value":"getOnePerson"},{"name":"Get All People","value":"getAllPeople"}],"default":"getOnePerson"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAllPeople"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAllPeople"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":10},"default":5,"description":"Max number of results to return"}],"iconUrl":{"light":"icons/n8n-nodes-base/dist/nodes/N8nTrainingCustomerDatastore/n8nTrainingCustomerDatastore.svg","dark":"icons/n8n-nodes-base/dist/nodes/N8nTrainingCustomerDatastore/n8nTrainingCustomerDatastore.dark.svg"}},
|
|
279
280
|
{"displayName":"Customer Messenger (n8n training)","name":"n8n-nodes-base.n8nTrainingCustomerMessenger","group":["transform"],"version":1,"description":"Dummy node used for n8n training","defaults":{"name":"Customer Messenger (n8n training)"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":""},{"displayName":"Message","name":"message","type":"string","required":true,"typeOptions":{"rows":4},"default":""}],"iconUrl":{"light":"icons/n8n-nodes-base/dist/nodes/N8nTrainingCustomerMessenger/n8nTrainingCustomerMessenger.svg","dark":"icons/n8n-nodes-base/dist/nodes/N8nTrainingCustomerMessenger/n8nTrainingCustomerMessenger.dark.svg"}},
|
|
280
|
-
{"displayName":"n8n Trigger","name":"n8n-nodes-base.n8nTrigger","group":["trigger"],"version":1,"description":"Handle events and perform actions on your n8n instance","eventTriggerDescription":"","mockManualExecution":true,"defaults":{"name":"n8n Trigger"},"inputs":[],"outputs":["main"],"properties":[{"displayName":"Events","name":"events","type":"multiOptions","required":true,"default":[],"description":"Specifies under which conditions an execution should happen
|
|
281
|
+
{"displayName":"n8n Trigger","name":"n8n-nodes-base.n8nTrigger","group":["trigger"],"version":1,"description":"Handle events and perform actions on your n8n instance","eventTriggerDescription":"","mockManualExecution":true,"defaults":{"name":"n8n Trigger"},"inputs":[],"outputs":["main"],"properties":[{"displayName":"Events","name":"events","type":"multiOptions","required":true,"default":[],"description":"Specifies under which conditions an execution should happen:\n\t\t\t\t<ul>\n\t\t\t\t\t<li><b>Active Workflow Updated</b>: Triggers when this workflow is updated</li>\n\t\t\t\t\t<li><b>Instance Started</b>: Triggers when this n8n instance is started or re-started</li>\n\t\t\t\t\t<li><b>Workflow Activated</b>: Triggers when this workflow is activated</li>\n\t\t\t\t</ul>","options":[{"name":"Active Workflow Updated","value":"update","description":"Triggers when this workflow is updated"},{"name":"Instance Started","value":"init","description":"Triggers when this n8n instance is started or re-started"},{"name":"Workflow Activated","value":"activate","description":"Triggers when this workflow is activated"}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Flow","Other Trigger Nodes","Helpers"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.n8ntrigger/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/N8nTrigger/n8nTrigger.svg"},
|
|
281
282
|
{"displayName":"NASA","name":"n8n-nodes-base.nasa","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \":\" + $parameter[\"resource\"]}}","description":"Retrieve data from the NASA API","defaults":{"name":"NASA"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"nasaApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Asteroid Neo-Browse","value":"asteroidNeoBrowse"},{"name":"Asteroid Neo-Feed","value":"asteroidNeoFeed"},{"name":"Asteroid Neo-Lookup","value":"asteroidNeoLookup"},{"name":"Astronomy Picture of the Day","value":"astronomyPictureOfTheDay"},{"name":"DONKI Coronal Mass Ejection","value":"donkiCoronalMassEjection"},{"name":"DONKI High Speed Stream","value":"donkiHighSpeedStream"},{"name":"DONKI Interplanetary Shock","value":"donkiInterplanetaryShock"},{"name":"DONKI Magnetopause Crossing","value":"donkiMagnetopauseCrossing"},{"name":"DONKI Notification","value":"donkiNotifications"},{"name":"DONKI Radiation Belt Enhancement","value":"donkiRadiationBeltEnhancement"},{"name":"DONKI Solar Energetic Particle","value":"donkiSolarEnergeticParticle"},{"name":"DONKI Solar Flare","value":"donkiSolarFlare"},{"name":"DONKI WSA+EnlilSimulation","value":"donkiWsaEnlilSimulation"},{"name":"Earth Asset","value":"earthAssets"},{"name":"Earth Imagery","value":"earthImagery"}],"default":"astronomyPictureOfTheDay"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["astronomyPictureOfTheDay"]}},"options":[{"name":"Get","value":"get","description":"Get the Astronomy Picture of the Day","action":"Get the astronomy picture of the day"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["asteroidNeoFeed"]}},"options":[{"name":"Get","value":"get","description":"Retrieve a list of asteroids based on their closest approach date to Earth","action":"Get an asteroid neo feed"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["asteroidNeoLookup"]}},"options":[{"name":"Get","value":"get","description":"Look up an asteroid based on its NASA SPK-ID","action":"Get an asteroid neo lookup"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["asteroidNeoBrowse"]}},"options":[{"name":"Get Many","value":"getAll","description":"Browse the overall asteroid dataset","action":"Get many asteroid neos"}],"default":"getAll"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiCoronalMassEjection"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI coronal mass ejection data","action":"Get a DONKI coronal mass ejection"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiGeomagneticStorm"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI geomagnetic storm data","action":"Get a DONKI geomagnetic storm"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiInterplanetaryShock"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI interplanetary shock data","action":"Get a DONKI interplanetary shock"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiSolarFlare"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI solar flare data","action":"Get a DONKI solar flare"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiSolarEnergeticParticle"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI solar energetic particle data","action":"Get a DONKI solar energetic particle"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiMagnetopauseCrossing"]}},"options":[{"name":"Get","value":"get","description":"Retrieve data on DONKI magnetopause crossings","action":"Get a DONKI magnetopause crossing"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiRadiationBeltEnhancement"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI radiation belt enhancement data","action":"Get a DONKI radiation belt enhancement"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiHighSpeedStream"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI high speed stream data","action":"Get a DONKI high speed stream"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiWsaEnlilSimulation"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI WSA+EnlilSimulation data","action":"Get a DONKI wsa enlil simulation"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["donkiNotifications"]}},"options":[{"name":"Get","value":"get","description":"Retrieve DONKI notifications data","action":"Get a DONKI notifications"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["earthImagery"]}},"options":[{"name":"Get","value":"get","description":"Retrieve Earth imagery","action":"Get Earth imagery"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["earthAssets"]}},"options":[{"name":"Get","value":"get","description":"Retrieve Earth assets","action":"Get Earth assets"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["inSightMarsWeatherService"]}},"options":[{"name":"Get","value":"get","description":"Retrieve Insight Mars Weather Service data","action":"Get Insight Mars Weather Service"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["imageAndVideoLibrary"]}},"options":[{"name":"Get","value":"get","description":"Retrieve Image and Video Library data","action":"Get image and video library data"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["techTransfer"]}},"options":[{"name":"Get","value":"get","description":"Retrieve TechTransfer data","action":"Get a TechTransfer data"}],"default":"get"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["twoLineElementSet"]}},"options":[{"name":"Get","value":"get","description":"Retrieve Two-Line Element Set data","action":"Get a Two-Line Element Set"}],"default":"get"},{"displayName":"Asteroid ID","name":"asteroidId","type":"string","required":true,"default":"","placeholder":"3542519","description":"The ID of the asteroid to be returned","displayOptions":{"show":{"resource":["asteroidNeoLookup"],"operation":["get"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["asteroidNeoLookup"],"operation":["get"]}},"options":[{"displayName":"Include Close Approach Data","name":"includeCloseApproachData","type":"boolean","default":false,"description":"Whether to include all the close approach data in the asteroid lookup"}]},{"displayName":"Download Image","name":"download","type":"boolean","displayOptions":{"show":{"resource":["astronomyPictureOfTheDay"]}},"default":true,"description":"By default just the URL of the image is returned. When set to true the image will be downloaded."},{"displayName":"Put Output File in Field","name":"binaryPropertyName","type":"string","required":true,"default":"data","displayOptions":{"show":{"operation":["get"],"resource":["astronomyPictureOfTheDay"],"download":[true]}},"hint":"The name of the output binary field to put the file in"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","default":{},"placeholder":"Add field","displayOptions":{"show":{"resource":["astronomyPictureOfTheDay"],"operation":["get"]}},"options":[{"displayName":"Date","name":"date","type":"dateTime","default":"","placeholder":"YYYY-MM-DD"}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","default":{},"placeholder":"Add field","displayOptions":{"show":{"resource":["asteroidNeoFeed","donkiCoronalMassEjection","donkiGeomagneticStorm","donkiSolarFlare","donkiSolarEnergeticParticle","donkiMagnetopauseCrossing","donkiRadiationBeltEnhancement","donkiHighSpeedStream","donkiWsaEnlilSimulation","donkiNotifications"],"operation":["get"]}},"options":[{"displayName":"Start Date","name":"startDate","type":"dateTime","default":"","placeholder":"YYYY-MM-DD"},{"displayName":"End Date","name":"endDate","type":"dateTime","default":"","placeholder":"YYYY-MM-DD"}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","default":{},"placeholder":"Add field","displayOptions":{"show":{"resource":["donkiInterplanetaryShock"],"operation":["get"]}},"options":[{"displayName":"Start Date","name":"startDate","type":"dateTime","default":"","placeholder":"YYYY-MM-DD"},{"displayName":"End Date","name":"endDate","type":"dateTime","default":"","placeholder":"YYYY-MM-DD"},{"displayName":"Location","name":"location","type":"options","default":"ALL","description":"The location of the geomagnetic storm","options":[{"name":"All","value":"ALL"},{"name":"Earth","value":"earth"},{"name":"Messenger","value":"MESSENGER"},{"name":"Stereo A","value":"STEREO A"},{"name":"Stereo B","value":"STEREO B"}]},{"displayName":"Catalog","name":"catalog","type":"options","default":"ALL","description":"The catalog of the geomagnetic storm","options":[{"name":"All","value":"ALL"},{"name":"SWRC Catalog","value":"SWRC_CATALOG"},{"name":"Winslow Messenger ICME Catalog","value":"WINSLOW_MESSENGER_ICME_CATALOG"}]}]},{"displayName":"Latitude","name":"lat","type":"number","default":"","placeholder":"47.751076","description":"Latitude for the location of the image","displayOptions":{"show":{"resource":["earthImagery","earthAssets"],"operation":["get"]}}},{"displayName":"Longitude","name":"lon","type":"number","default":"","placeholder":"-120.740135","description":"Longitude for the location of the image","displayOptions":{"show":{"resource":["earthImagery","earthAssets"],"operation":["get"]}}},{"displayName":"Put Output File in Field","name":"binaryPropertyName","type":"string","required":true,"default":"data","displayOptions":{"show":{"operation":["get"],"resource":["earthImagery"]}},"hint":"The name of the output binary field to put the file in"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","default":{},"placeholder":"Add field","displayOptions":{"show":{"resource":["earthImagery","earthAssets"],"operation":["get"]}},"options":[{"displayName":"Date","name":"date","type":"dateTime","default":"","placeholder":"YYYY-MM-DD","description":"Date of the image"},{"displayName":"Degrees","name":"dim","type":"number","default":"","placeholder":"0.025","description":"Width and height of the image in degrees"}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","typeOptions":{"minValue":1},"description":"Max number of results to return","default":20,"displayOptions":{"show":{"operation":["getAll"],"returnAll":[false]}}}],"codex":{"categories":["Miscellaneous"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.nasa/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/nasa/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Nasa/nasa.png"},
|
|
282
283
|
{"displayName":"Netlify","name":"n8n-nodes-base.netlify","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Netlify API","defaults":{"name":"Netlify"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"netlifyApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Deploy","value":"deploy"},{"name":"Site","value":"site"}],"default":"deploy","required":true},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["deploy"]}},"options":[{"name":"Cancel","value":"cancel","description":"Cancel a deployment","action":"Cancel a deployment"},{"name":"Create","value":"create","description":"Create a new deployment","action":"Create a deployment"},{"name":"Get","value":"get","description":"Get a deployment","action":"Get a deployment"},{"name":"Get Many","value":"getAll","description":"Get many deployments","action":"Get many deployments"}],"default":"getAll"},{"displayName":"Site Name or ID","name":"siteId","required":true,"type":"options","default":"","typeOptions":{"loadOptionsMethod":"getSites"},"description":"Enter the Site ID. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["deploy"],"operation":["get","create","getAll"]}}},{"displayName":"Deploy ID","name":"deployId","required":true,"type":"string","default":"","displayOptions":{"show":{"resource":["deploy"],"operation":["get","cancel"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["deploy"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["deploy"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":200},"default":50,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Fields","default":{},"displayOptions":{"show":{"resource":["deploy"],"operation":["create"]}},"options":[{"displayName":"Branch","name":"branch","type":"string","default":""},{"displayName":"Title","name":"title","type":"string","default":""}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["site"]}},"options":[{"name":"Delete","value":"delete","description":"Delete a site","action":"Delete a site"},{"name":"Get","value":"get","description":"Get a site","action":"Get a site"},{"name":"Get Many","value":"getAll","description":"Returns many sites","action":"Get many sites"}],"default":"delete"},{"displayName":"Site ID","name":"siteId","required":true,"type":"string","default":"","displayOptions":{"show":{"resource":["site"],"operation":["get","delete"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["site"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["site"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":200},"default":50,"description":"Max number of results to return"}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.netlify/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/netlify/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Netlify/netlify.svg"},
|
|
283
284
|
{"displayName":"Netlify Trigger","name":"n8n-nodes-base.netlifyTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"event\"]}}","description":"Handle netlify events via webhooks","defaults":{"name":"Netlify Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"netlifyApi","required":true}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Site Name or ID","name":"siteId","required":true,"type":"options","default":"","typeOptions":{"loadOptionsMethod":"getSites"},"description":"Select the Site ID. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Event","name":"event","type":"options","required":true,"default":"","options":[{"name":"Deploy Building","value":"deployBuilding"},{"name":"Deploy Failed","value":"deployFailed"},{"name":"Deploy Created","value":"deployCreated"},{"name":"Form Submitted","value":"submissionCreated"}]},{"displayName":"Form Name or ID","name":"formId","type":"options","required":true,"displayOptions":{"show":{"event":["submissionCreated"]}},"default":"","typeOptions":{"loadOptionsMethod":"getForms"},"description":"Select a form. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Simplify","name":"simple","type":"boolean","displayOptions":{"show":{"event":["submissionCreated"]}},"default":true,"description":"Whether to return a simplified version of the response instead of the raw data"}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.netlifytrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/netlify/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Netlify/netlify.svg"},
|
|
@@ -355,7 +356,7 @@
|
|
|
355
356
|
{"displayName":"Sendy","name":"n8n-nodes-base.sendy","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Sendy API","defaults":{"name":"Sendy"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"sendyApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Campaign","value":"campaign"},{"name":"Subscriber","value":"subscriber"}],"default":"subscriber"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["campaign"]}},"options":[{"name":"Create","value":"create","description":"Create a campaign","action":"Create a campaign"}],"default":"create"},{"displayName":"From Name","name":"fromName","type":"string","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":"","description":"The 'From name' of your campaign"},{"displayName":"From Email","name":"fromEmail","type":"string","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":"","description":"The 'From email' of your campaign"},{"displayName":"Reply To","name":"replyTo","type":"string","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":"","description":"The 'Reply to' of your campaign"},{"displayName":"Title","name":"title","type":"string","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":"","description":"The 'Title' of your campaign"},{"displayName":"Subject","name":"subject","type":"string","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":"","description":"The 'Subject' of your campaign"},{"displayName":"HTML Text","name":"htmlText","type":"string","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":"","description":"The 'HTML version' of your campaign"},{"displayName":"Send Campaign","name":"sendCampaign","type":"boolean","displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"default":false,"description":"Whether to send the campaign as well and not just create a draft. Default is false."},{"displayName":"Brand ID","name":"brandId","type":"string","displayOptions":{"show":{"operation":["create"],"resource":["campaign"],"sendCampaign":[false]}},"required":true,"default":""},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["campaign"],"operation":["create"]}},"options":[{"displayName":"Exclude List IDs","name":"excludeListIds","type":"string","default":"","description":"Lists to exclude from your campaign. List IDs should be single or comma-separated."},{"displayName":"Exclude Segment IDs","name":"excludeSegmentIds","type":"string","default":"","description":"Segments to exclude from your campaign. Segment IDs should be single or comma-separated."},{"displayName":"List IDs","name":"listIds","type":"string","default":"","description":"List IDs should be single or comma-separated"},{"displayName":"Plain Text","name":"plainText","type":"string","default":"","description":"The 'Plain text version' of your campaign"},{"displayName":"Querystring","name":"queryString","type":"string","default":"","description":"Google Analytics tags"},{"displayName":"Segment IDs","name":"segmentIds","type":"string","default":"","description":"Segment IDs should be single or comma-separated"},{"displayName":"Track Clicks","name":"trackClicks","type":"boolean","default":true,"description":"Whether to disable clicks tracking. Default is true."},{"displayName":"Track Opens","name":"trackOpens","type":"boolean","default":true,"description":"Whether to disable opens tracking. Default is true."}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["subscriber"]}},"options":[{"name":"Add","value":"add","description":"Add a subscriber to a list","action":"Add a subscriber"},{"name":"Count","value":"count","description":"Count subscribers","action":"Count a subscriber"},{"name":"Delete","value":"delete","description":"Delete a subscriber from a list","action":"Delete a subscriber"},{"name":"Remove","value":"remove","description":"Unsubscribe user from a list","action":"Remove a subscriber"},{"name":"Status","value":"status","description":"Get the status of subscriber","action":"Get subscriber's status"}],"default":"add"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","displayOptions":{"show":{"resource":["subscriber"],"operation":["add"]}},"default":"","description":"Email address of the subscriber"},{"displayName":"List ID","name":"listId","type":"string","displayOptions":{"show":{"resource":["subscriber"],"operation":["add"]}},"default":"","description":"The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID."},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["subscriber"],"operation":["add"]}},"options":[{"displayName":"Country","name":"country","type":"string","default":"","description":"User's 2 letter country code"},{"displayName":"GDPR","name":"gdpr","type":"boolean","default":false,"description":"Whether you're signing up EU users in a GDPR compliant manner"},{"displayName":"Honeypot","name":"hp","type":"boolean","default":false,"description":"Include this 'honeypot' field to prevent spambots from signing up via this API call. When spambots fills in this field, this API call will exit, preventing them from signing up fake addresses to your form. This parameter is only supported in Sendy 3.0 onwards."},{"displayName":"IP Address","name":"ipaddress","type":"string","default":"","description":"User's IP address"},{"displayName":"Name","name":"name","type":"string","default":"","description":"User's name"},{"displayName":"Referrer","name":"referrer","type":"string","default":"","description":"The URL where the user signed up from"},{"displayName":"Silent","name":"silent","type":"boolean","default":false,"description":"Set to \"true\" if your list is 'Double opt-in' but you want to bypass that and signup the user to the list as 'Single Opt-in instead' (optional)"}]},{"displayName":"List ID","name":"listId","type":"string","displayOptions":{"show":{"resource":["subscriber"],"operation":["count"]}},"default":"","description":"The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID."},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","displayOptions":{"show":{"resource":["subscriber"],"operation":["delete"]}},"default":"","description":"Email address of the subscriber"},{"displayName":"List ID","name":"listId","type":"string","displayOptions":{"show":{"resource":["subscriber"],"operation":["delete"]}},"default":"","description":"The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID."},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","displayOptions":{"show":{"resource":["subscriber"],"operation":["remove"]}},"default":"","description":"Email address of the subscriber"},{"displayName":"List ID","name":"listId","type":"string","displayOptions":{"show":{"resource":["subscriber"],"operation":["remove"]}},"default":"","description":"The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID."},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","displayOptions":{"show":{"resource":["subscriber"],"operation":["status"]}},"default":"","description":"Email address of the subscriber"},{"displayName":"List ID","name":"listId","type":"string","displayOptions":{"show":{"resource":["subscriber"],"operation":["status"]}},"default":"","description":"The list ID you want to subscribe a user to. This encrypted & hashed ID can be found under View all lists section named ID."}],"codex":{"categories":["Communication","Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.sendy/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/sendy/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Sendy/sendy.png"},
|
|
356
357
|
{"displayName":"Sentry.io","name":"n8n-nodes-base.sentryIo","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Sentry.io API","defaults":{"name":"Sentry.io"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"sentryIoOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"],"sentryVersion":["cloud"]}}},{"name":"sentryIoApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"],"sentryVersion":["cloud"]}}},{"name":"sentryIoServerApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"],"sentryVersion":["server"]}}}],"properties":[{"displayName":"Sentry Version","name":"sentryVersion","type":"options","options":[{"name":"Cloud","value":"cloud"},{"name":"Server (Self Hosted)","value":"server"}],"default":"cloud"},{"displayName":"Authentication","name":"authentication","type":"options","displayOptions":{"show":{"sentryVersion":["cloud"]}},"options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"}],"default":"accessToken"},{"displayName":"Authentication","name":"authentication","type":"options","displayOptions":{"show":{"sentryVersion":["server"]}},"options":[{"name":"Access Token","value":"accessToken"}],"default":"accessToken"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Event","value":"event"},{"name":"Issue","value":"issue"},{"name":"Organization","value":"organization"},{"name":"Project","value":"project"},{"name":"Release","value":"release"},{"name":"Team","value":"team"}],"default":"event"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["event"]}},"options":[{"name":"Get","value":"get","description":"Get event by ID","action":"Get an event"},{"name":"Get Many","value":"getAll","description":"Get many events","action":"Get many events"}],"default":"get"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}},"required":true,"description":"The slug of the organization the events belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Project Slug Name or ID","name":"projectSlug","type":"options","typeOptions":{"loadOptionsMethod":"getProjects","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}},"required":true,"description":"The slug of the project the events belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Full","name":"full","type":"boolean","default":true,"displayOptions":{"show":{"resource":["event"],"operation":["getAll"]}},"description":"Whether the event payload will include the full event body, including the stack trace"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["event"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["event"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["event"],"operation":["get"]}},"required":true,"description":"The slug of the organization the events belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Project Slug Name or ID","name":"projectSlug","type":"options","typeOptions":{"loadOptionsMethod":"getProjects"},"default":"","displayOptions":{"show":{"resource":["event"],"operation":["get"]}},"required":true,"description":"The slug of the project the events belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Event ID","name":"eventId","type":"string","default":"","displayOptions":{"show":{"resource":["event"],"operation":["get"]}},"required":true,"description":"The ID of the event to retrieve (either the numeric primary-key or the hexadecimal ID as reported by the raven client)"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["issue"]}},"options":[{"name":"Delete","value":"delete","description":"Delete an issue","action":"Delete an issue"},{"name":"Get","value":"get","description":"Get issue by ID","action":"Get an issue"},{"name":"Get Many","value":"getAll","description":"Get many issues","action":"Get many issues"},{"name":"Update","value":"update","description":"Update an issue","action":"Update an issue"}],"default":"get"},{"displayName":"Issue ID","name":"issueId","type":"string","default":"","placeholder":"1234","displayOptions":{"show":{"resource":["issue"],"operation":["get","delete"]}},"required":true,"description":"ID of issue to get"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["issue"],"operation":["getAll"]}},"required":true,"description":"The slug of the organization the issues belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Project Slug Name or ID","name":"projectSlug","type":"options","typeOptions":{"loadOptionsMethod":"getProjects","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["issue"],"operation":["getAll"]}},"required":true,"description":"The slug of the project the issues belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["issue"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["issue"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["issue"],"operation":["getAll"]}},"options":[{"displayName":"Query","name":"query","type":"string","default":"","description":"An optional Sentry structured search query. If not provided, an implied \"is:unresolved\" is assumed. Info <a href=\"https://docs.sentry.io/product/sentry-basics/search/\">here</a>."},{"displayName":"Stats Period","name":"statsPeriod","type":"options","default":"","description":"Time period of stats","options":[{"name":"14 Days","value":"14d"},{"name":"24 Hours","value":"24h"}]},{"displayName":"Short ID Lookup","name":"shortIdLookUp","type":"boolean","default":true,"description":"Whether short IDs are looked up by this function as well. This can cause the return value of the function to return an event issue of a different project which is why this is an opt-in."}]},{"displayName":"Issue ID","name":"issueId","type":"string","default":"","placeholder":"1234","displayOptions":{"show":{"resource":["issue"],"operation":["update"]}},"required":true,"description":"ID of issue to get"},{"displayName":"Update Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["issue"],"operation":["update"]}},"options":[{"displayName":"Assigned To","name":"assignedTo","type":"string","default":"","description":"The actor ID (or username) of the user or team that should be assigned to this issue"},{"displayName":"Has Seen","name":"hasSeen","type":"boolean","default":true,"description":"Whether this API call is invoked with a user context this allows changing of the flag that indicates if the user has seen the event"},{"displayName":"Is Bookmarked","name":"isBookmarked","type":"boolean","default":true,"description":"Whether this API call is invoked with a user context this allows changing of the bookmark flag"},{"displayName":"Is Public","name":"isPublic","type":"boolean","default":true,"description":"Whether to set the issue to public or private"},{"displayName":"Is Subscribed","name":"isSubscribed","type":"boolean","default":true},{"displayName":"Status","name":"status","type":"options","default":"","description":"The new status for the issue","options":[{"name":"Ignored","value":"ignored"},{"name":"Resolved","value":"resolved"},{"name":"Resolved Next Release","value":"resolvedInNextRelease"},{"name":"Unresolved","value":"unresolved"}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["organization"]}},"options":[{"name":"Create","value":"create","description":"Create an organization","action":"Create an organization"},{"name":"Get","value":"get","description":"Get organization by slug","action":"Get an organization"},{"name":"Get Many","value":"getAll","description":"Get many organizations","action":"Get many organizations"},{"name":"Update","value":"update","description":"Update an organization","action":"Update an organization"}],"default":"get"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["organization"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["organization"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["organization"],"operation":["getAll"]}},"options":[{"displayName":"Member","name":"member","type":"boolean","default":true,"description":"Whether to restrict results to organizations which you have membership"},{"displayName":"Owner","name":"owner","type":"boolean","default":true,"description":"Whether to restrict results to organizations which you are the owner"}]},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["organization"],"operation":["get"]}},"required":true,"description":"The slug of the organization the team should be created for. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Name","name":"name","type":"string","default":"","displayOptions":{"show":{"resource":["organization"],"operation":["create"]}},"required":true,"description":"The slug of the organization the team should be created for"},{"displayName":"Agree to Terms","name":"agreeTerms","type":"boolean","default":false,"displayOptions":{"show":{"resource":["organization"],"operation":["create"]}},"description":"Whether you agree to the applicable terms of service and privacy policy of Sentry.io"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["organization"],"operation":["create"]}},"options":[{"displayName":"Slug","name":"slug","type":"string","default":"","description":"The unique URL slug for this organization. If this is not provided a slug is automatically generated based on the name."}]},{"displayName":"Slug Name or ID","name":"organization_slug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["organization"],"operation":["update"]}},"required":true,"description":"The slug of the organization to update. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["organization"],"operation":["update"]}},"options":[{"displayName":"Name","name":"name","type":"string","default":"","description":"The new name of the organization"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"The new URL slug for this organization"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["project"]}},"options":[{"name":"Create","value":"create","description":"Create a new project","action":"Create a project"},{"name":"Delete","value":"delete","description":"Delete a project","action":"Delete a project"},{"name":"Get","value":"get","description":"Get project by ID","action":"Get a project"},{"name":"Get Many","value":"getAll","description":"Get many projects","action":"Get many projects"},{"name":"Update","value":"update","description":"Update a project","action":"Update a project"}],"default":"get"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["create","get"]}},"required":true,"description":"The slug of the organization the events belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Project Slug Name or ID","name":"projectSlug","type":"options","typeOptions":{"loadOptionsMethod":"getProjects","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["get"]}},"required":true,"description":"The slug of the project to retrieve. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Team Slug Name or ID","name":"teamSlug","type":"options","typeOptions":{"loadOptionsMethod":"getTeams","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["create"]}},"required":true,"description":"The slug of the team to create a new project for. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Name","name":"name","type":"string","default":"","displayOptions":{"show":{"resource":["project"],"operation":["create"]}},"required":true,"description":"The name for the new project"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["project"],"operation":["create"]}},"options":[{"displayName":"Slug","name":"slug","type":"string","default":"","description":"Optionally a slug for the new project. If it’s not provided a slug is generated from the name."}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["project"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["project"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["update"]}},"required":true,"description":"The slug of the organization the project belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Project Slug Name or ID","name":"projectSlug","type":"options","typeOptions":{"loadOptionsMethod":"getProjects","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["update"]}},"required":true,"description":"The slug of the project to update. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["project"],"operation":["update"]}},"options":[{"displayName":"Bookmarked","name":"isBookmarked","type":"boolean","default":false,"description":"The new platform for the updated project"},{"displayName":"Digests Maximum Delay","name":"digestsMaxDelay","type":"number","default":1800,"description":"Maximum interval to digest alerts"},{"displayName":"Digests Minimun Delay","name":"digestsMinDelay","type":"number","default":60,"description":"Minium interval to digest alerts"},{"displayName":"Name","name":"name","type":"string","default":"","description":"The new name for the updated project"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"The new slug for the updated project"},{"displayName":"Team","name":"team","type":"string","default":"","description":"The new team name"},{"displayName":"Platform","name":"platform","type":"string","default":"","description":"The new platform for the updated project"}]},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["delete"]}},"required":true,"description":"The slug of the organization the project belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Project Slug Name or ID","name":"projectSlug","type":"options","typeOptions":{"loadOptionsMethod":"getProjects","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["project"],"operation":["delete"]}},"required":true,"description":"The slug of the project to delete. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["release"]}},"options":[{"name":"Create","value":"create","description":"Create a release","action":"Create a release"},{"name":"Delete","value":"delete","description":"Delete a release","action":"Delete a release"},{"name":"Get","value":"get","description":"Get release by version identifier","action":"Get a release by version ID"},{"name":"Get Many","value":"getAll","description":"Get many releases","action":"Get many releases"},{"name":"Update","value":"update","description":"Update a release","action":"Update a release"}],"default":"get"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["release"],"operation":["getAll"]}},"required":true,"description":"The slug of the organization the releases belong to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["release"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["release"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["release"],"operation":["getAll"]}},"options":[{"displayName":"Query","name":"query","type":"string","default":"","description":"This parameter can be used to create a “starts with” filter for the version"}]},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["release"],"operation":["get","delete"]}},"required":true,"description":"The slug of the organization the release belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Version","name":"version","type":"string","default":"","displayOptions":{"show":{"resource":["release"],"operation":["get","delete"]}},"required":true,"description":"The version identifier of the release"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["release"],"operation":["create"]}},"required":true,"description":"The slug of the organization the release belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Version","name":"version","type":"string","default":"","displayOptions":{"show":{"resource":["release"],"operation":["create"]}},"required":true,"description":"A version identifier for this release. Can be a version number, a commit hash etc."},{"displayName":"URL","name":"url","type":"string","default":"","displayOptions":{"show":{"resource":["release"],"operation":["create"]}},"required":true,"description":"A URL that points to the release. This can be the path to an online interface to the sourcecode for instance."},{"displayName":"Project Names or IDs","name":"projects","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getProjects"},"default":[],"displayOptions":{"show":{"resource":["release"],"operation":["create"]}},"required":true,"description":"A list of project slugs that are involved in this release. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["release"],"operation":["create"]}},"options":[{"displayName":"Date Released","name":"dateReleased","type":"dateTime","default":"","description":"An optional date that indicates when the release went live. If not provided the current time is assumed."},{"displayName":"Commits","name":"commits","description":"An optional list of commit data to be associated with the release","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"commitProperties","displayName":"Commit Properties","values":[{"displayName":"ID","name":"id","type":"string","default":"","description":"The sha of the commit","required":true},{"displayName":"Author Email","name":"authorEmail","type":"string","default":"","description":"Authors email"},{"displayName":"Author Name","name":"authorName","type":"string","default":"","description":"Name of author"},{"displayName":"Message","name":"message","type":"string","default":"","description":"Message of commit"},{"displayName":"Patch Set","name":"patchSet","description":"A list of the files that have been changed in the commit. Specifying the patch_set is necessary to power suspect commits and suggested assignees.","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"patchSetProperties","displayName":"Patch Set Properties","values":[{"displayName":"Path","name":"path","type":"string","default":"","description":"The path to the file. Both forward and backward slashes are supported.","required":true},{"displayName":"Type","name":"type","type":"options","default":"","description":"The types of changes that happened in that commit","options":[{"name":"Add","value":"add"},{"name":"Modify","value":"modify"},{"name":"Delete","value":"delete"}]}]}]},{"displayName":"Repository","name":"repository","type":"string","default":"","description":"Repository name"},{"displayName":"Timestamp","name":"timestamp","type":"dateTime","default":"","description":"Timestamp of commit"}]}]},{"displayName":"Refs","name":"refs","description":"An optional way to indicate the start and end commits for each repository included in a release","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"refProperties","displayName":"Ref Properties","values":[{"displayName":"Commit","name":"commit","type":"string","default":"","description":"The head sha of the commit","required":true},{"displayName":"Repository","name":"repository","type":"string","default":"","description":"Repository name","required":true},{"displayName":"Previous Commit","name":"previousCommit","type":"string","default":"","description":"The sha of the HEAD of the previous release"}]}]}]},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["release"],"operation":["update"]}},"required":true,"description":"The slug of the organization the release belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Version","name":"version","type":"string","default":"","displayOptions":{"show":{"resource":["release"],"operation":["update"]}},"required":true,"description":"A version identifier for this release. Can be a version number, a commit hash etc."},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["release"],"operation":["update"]}},"options":[{"displayName":"Commits","name":"commits","description":"An optional list of commit data to be associated with the release","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"commitProperties","displayName":"Commit Properties","values":[{"displayName":"ID","name":"id","type":"string","default":"","description":"The sha of the commit","required":true},{"displayName":"Author Email","name":"authorEmail","type":"string","default":"","description":"Authors email"},{"displayName":"Author Name","name":"authorName","type":"string","default":"","description":"Name of author"},{"displayName":"Message","name":"message","type":"string","default":"","description":"Message of commit"},{"displayName":"Patch Set","name":"patchSet","description":"A list of the files that have been changed in the commit. Specifying the patch_set is necessary to power suspect commits and suggested assignees.","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"patchSetProperties","displayName":"Patch Set Properties","values":[{"displayName":"Path","name":"path","type":"string","default":"","description":"The path to the file. Both forward and backward slashes are supported.","required":true},{"displayName":"Type","name":"type","type":"options","default":"","description":"The types of changes that happened in that commit","options":[{"name":"Add","value":"add"},{"name":"Modify","value":"modify"},{"name":"Delete","value":"delete"}]}]}]},{"displayName":"Repository","name":"repository","type":"string","default":"","description":"Repository name"},{"displayName":"Timestamp","name":"timestamp","type":"dateTime","default":"","description":"Timestamp of commit"}]}]},{"displayName":"Date Released","name":"dateReleased","type":"dateTime","default":"","description":"An optional date that indicates when the release went live. If not provided the current time is assumed."},{"displayName":"Ref","name":"ref","type":"string","default":"","description":"A URL that points to the release. This can be the path to an online interface to the sourcecode for instance."},{"displayName":"Refs","name":"refs","description":"An optional way to indicate the start and end commits for each repository included in a release","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"options":[{"name":"refProperties","displayName":"Ref Properties","values":[{"displayName":"Commit","name":"commit","type":"string","default":"","description":"The head sha of the commit","required":true},{"displayName":"Repository","name":"repository","type":"string","default":"","description":"Repository name","required":true},{"displayName":"Previous Commit","name":"previousCommit","type":"string","default":"","description":"The sha of the HEAD of the previous release"}]}]},{"displayName":"URL","name":"url","type":"string","default":"","description":"A URL that points to the release. This can be the path to an online interface to the sourcecode for instance."}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["team"]}},"options":[{"name":"Create","value":"create","description":"Create a new team","action":"Create a team"},{"name":"Delete","value":"delete","description":"Delete a team","action":"Delete a team"},{"name":"Get","value":"get","description":"Get team by slug","action":"Get a team"},{"name":"Get Many","value":"getAll","description":"Get many teams","action":"Get many teams"},{"name":"Update","value":"update","description":"Update a team","action":"Update a team"}],"default":"get"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["getAll"]}},"required":true,"description":"The slug of the organization for which the teams should be listed. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["team"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["team"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":100,"description":"Max number of results to return"},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["get"]}},"required":true,"description":"The slug of the organization the team belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Team Slug Name or ID","name":"teamSlug","type":"options","typeOptions":{"loadOptionsMethod":"getTeams","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["get"]}},"required":true,"description":"The slug of the team to get. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["create"]}},"required":true,"description":"The slug of the organization the team belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Name","name":"name","type":"string","default":"","displayOptions":{"show":{"resource":["team"],"operation":["create"]}},"required":true,"description":"The name of the team"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["team"],"operation":["create"]}},"options":[{"displayName":"Slug","name":"slug","type":"string","default":"","description":"The optional slug for this team. If not provided it will be auto generated from the name."}]},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["update"]}},"required":true,"description":"The slug of the organization the team belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Team Slug Name or ID","name":"teamSlug","type":"options","typeOptions":{"loadOptionsMethod":"getTeams","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["update"]}},"required":true,"description":"The slug of the team to update. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["team"],"operation":["update"]}},"options":[{"displayName":"Name","name":"name","type":"string","default":"","description":"The new name of the team"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"The new slug of the team. Must be unique and available."}]},{"displayName":"Organization Slug Name or ID","name":"organizationSlug","type":"options","typeOptions":{"loadOptionsMethod":"getOrganizations"},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["delete"]}},"required":true,"description":"The slug of the organization the team belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Team Slug Name or ID","name":"teamSlug","type":"options","typeOptions":{"loadOptionsMethod":"getTeams","loadOptionsDependsOn":["organizationSlug"]},"default":"","displayOptions":{"show":{"resource":["team"],"operation":["delete"]}},"required":true,"description":"The slug of the team to delete. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."}],"codex":{"categories":["Development"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.sentryio/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/sentryIo/"}]}},"iconUrl":{"light":"icons/n8n-nodes-base/dist/nodes/SentryIo/sentryio.svg","dark":"icons/n8n-nodes-base/dist/nodes/SentryIo/sentryio.dark.svg"}},
|
|
357
358
|
{"displayName":"ServiceNow","name":"n8n-nodes-base.serviceNow","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume ServiceNow API","defaults":{"name":"ServiceNow"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"serviceNowOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}},{"name":"serviceNowBasicApi","required":true,"displayOptions":{"show":{"authentication":["basicAuth"]}}}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Basic Auth","value":"basicAuth"},{"name":"OAuth2","value":"oAuth2"}],"default":"oAuth2","description":"Authentication method to use"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Attachment","value":"attachment"},{"name":"Business Service","value":"businessService"},{"name":"Configuration Item","value":"configurationItems"},{"name":"Department","value":"department"},{"name":"Dictionary","value":"dictionary"},{"name":"Incident","value":"incident"},{"name":"Table Record","value":"tableRecord"},{"name":"User","value":"user"},{"name":"User Group","value":"userGroup"},{"name":"User Role","value":"userRole"}],"default":"user"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["attachment"]}},"options":[{"name":"Upload","value":"upload","description":"Upload an attachment to a specific table record","action":"Upload an attachment"},{"name":"Delete","value":"delete","description":"Delete an attachment","action":"Delete an attachment"},{"name":"Get","value":"get","description":"Get an attachment","action":"Get an attachment"},{"name":"Get Many","value":"getAll","description":"Get many attachments on a table","action":"Get many attachments"}],"default":"upload"},{"displayName":"Table Name or ID","name":"tableName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTables"},"default":"","displayOptions":{"show":{"resource":["attachment"],"operation":["upload","getAll"]}},"required":true},{"displayName":"Table Record ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["attachment"],"operation":["upload"]}},"required":true,"description":"Sys_id of the record in the table specified in Table Name that you want to attach the file to"},{"displayName":"Input Data Field Name","name":"inputDataFieldName","type":"string","default":"data","required":true,"displayOptions":{"show":{"resource":["attachment"],"operation":["upload"]}},"description":"Name of the binary property that contains the data to upload"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["attachment"],"operation":["upload"]}},"default":{},"options":[{"displayName":"File Name for the Attachment","name":"file_name","type":"string","default":"","description":"Name to give the attachment"}]},{"displayName":"Attachment ID","name":"attachmentId","type":"string","default":"","displayOptions":{"show":{"resource":["attachment"],"operation":["delete"]}},"required":true,"description":"Sys_id value of the attachment to delete"},{"displayName":"Attachment ID","name":"attachmentId","type":"string","default":"","displayOptions":{"show":{"resource":["attachment"],"operation":["get"]}},"required":true,"description":"Sys_id value of the attachment to delete"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["attachment"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["attachment"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Download Attachments","name":"download","type":"boolean","default":false,"required":true,"displayOptions":{"show":{"resource":["attachment"],"operation":["get","getAll"]}}},{"displayName":"Output Field","name":"outputField","type":"string","default":"data","description":"Field name where downloaded data will be placed","displayOptions":{"show":{"resource":["attachment"],"operation":["get","getAll"],"download":[true]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["attachment"],"operation":["get","getAll"]}},"default":{},"options":[{"displayName":"Filter","name":"queryFilter","type":"string","placeholder":"<col_name><operator><value>","default":"","description":"An encoded query string used to filter the results","hint":"All parameters are case-sensitive. Queries can contain more than one entry. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">more information</a>."}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["businessService"]}},"options":[{"name":"Get Many","value":"getAll","action":"Get many business services"}],"default":"getAll"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["businessService"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["businessService"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["businessService"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["configurationItems"]}},"options":[{"name":"Get Many","value":"getAll","action":"Get many configuration items"}],"default":"getAll"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["configurationItems"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["configurationItems"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["configurationItems"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["department"]}},"options":[{"name":"Get Many","value":"getAll","action":"Get many departments"}],"default":"getAll"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["department"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["department"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["department"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["dictionary"]}},"options":[{"name":"Get Many","value":"getAll","action":"Get many dictionaries"}],"default":"getAll"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["dictionary"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["dictionary"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["dictionary"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["incident"]}},"options":[{"name":"Create","value":"create","action":"Create an incident"},{"name":"Delete","value":"delete","action":"Delete an incident"},{"name":"Get","value":"get","action":"Get an incident"},{"name":"Get Many","value":"getAll","action":"Get many incidents"},{"name":"Update","value":"update","action":"Update an incident"}],"default":"get"},{"displayName":"Short Description","name":"short_description","type":"string","default":"","displayOptions":{"show":{"resource":["incident"],"operation":["create"]}},"required":true,"description":"Short description of the incident"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["incident"],"operation":["create"]}},"default":{},"options":[{"displayName":"Assignee Name or ID","name":"assigned_to","type":"options","typeOptions":{"loadOptionsMethod":"getUsers","loadOptionsDependsOn":["additionalFields.assignment_group"]},"default":"","description":"Which user is the incident assigned to. Requires the selection of an assignment group. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Assignment Group Name or ID","name":"assignment_group","type":"options","typeOptions":{"loadOptionsMethod":"getAssignmentGroups"},"default":"","description":"The assignment group of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Business Service Name or ID","name":"business_service","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getBusinessServices"},"default":""},{"displayName":"Caller ID","name":"caller_id","type":"string","default":"","description":"The unique identifier of the caller of the incident"},{"displayName":"Category Name or ID","name":"category","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentCategories"},"default":"","description":"The category of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Close Notes","name":"close_notes","type":"string","default":"","description":"The close notes for the incident"},{"displayName":"Configuration Item Names or IDs","name":"cmdb_ci","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getConfigurationItems"},"default":[],"description":"Configuration Items, 'cmdb_ci' in metadata. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Contact Type","name":"contact_type","type":"options","options":[{"name":"Email","value":"email"},{"name":"Phone","value":"phone"},{"name":"Self Service","value":"self-service"},{"name":"Walk In","value":"walk-in"}],"default":""},{"displayName":"Description","name":"description","type":"string","default":"","description":"The description of the incident"},{"displayName":"Impact","name":"impact","type":"options","options":[{"name":"Low","value":3},{"name":"Medium","value":2},{"name":"High","value":1}],"default":1,"description":"The impact of the incident"},{"displayName":"Resolution Code Name or ID","name":"close_code","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentResolutionCodes"},"default":"","description":"The resolution code of the incident, 'close_code' in metadata. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"State Name or ID","name":"state","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentStates"},"default":"","description":"The state of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Subcategory Name or ID","name":"subcategory","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentSubcategories","loadOptionsDependsOn":["additionalFields.category"]},"default":"","description":"The subcategory of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Urgency","name":"urgency","type":"options","options":[{"name":"Low","value":3},{"name":"Medium","value":2},{"name":"High","value":1}],"default":1,"description":"The urgency of the incident"}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["incident"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["incident"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","displayOptions":{"show":{"resource":["incident"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Incident ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["incident"],"operation":["delete","get"]}},"required":true,"description":"Unique identifier of the incident"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","displayOptions":{"show":{"resource":["incident"],"operation":["get"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Incident ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["incident"],"operation":["update"]}},"required":true,"description":"Unique identifier of the incident"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["incident"],"operation":["update"]}},"default":{},"options":[{"displayName":"Assigned To Name or ID","name":"assigned_to","type":"options","typeOptions":{"loadOptionsMethod":"getUsers","loadOptionsDependsOn":["additionalFields.assignment_group"]},"default":"","description":"Which user is the incident assigned to. Requires the selection of an assignment group. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Assignment Group Name or ID","name":"assignment_group","type":"options","typeOptions":{"loadOptionsMethod":"getAssignmentGroups"},"default":"","description":"The assignment group of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Business Service Name or ID","name":"business_service","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getBusinessServices"},"default":""},{"displayName":"Caller ID","name":"caller_id","type":"string","default":"","description":"The unique identifier of the caller of the incident"},{"displayName":"Category Name or ID","name":"category","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentCategories"},"default":"","description":"The category of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Close Notes","name":"close_notes","type":"string","default":"","description":"The close notes for the incident"},{"displayName":"Configuration Item Names or IDs","name":"cmdb_ci","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getConfigurationItems"},"default":[],"description":"Configuration Items, 'cmdb_ci' in metadata. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Contact Type","name":"contact_type","type":"options","options":[{"name":"Email","value":"email"},{"name":"Phone","value":"phone"},{"name":"Self Service","value":"self-service"},{"name":"Walk In","value":"walk-in"}],"default":""},{"displayName":"Description","name":"description","type":"string","default":"","description":"The description of the incident"},{"displayName":"Impact","name":"impact","type":"options","options":[{"name":"Low","value":3},{"name":"Medium","value":2},{"name":"High","value":1}],"default":1,"description":"The impact of the incident"},{"displayName":"Resolution Code Name or ID","name":"close_code","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentResolutionCodes"},"default":"","description":"The resolution code of the incident. 'close_code' in metadata. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"On Hold Reason Name or ID","name":"hold_reason","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentHoldReasons"},"default":"","description":"The on hold reason for the incident. It applies if the state is <code>On Hold</code>. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"State Name or ID","name":"state","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentStates"},"default":"","description":"The state of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Subcategory Name or ID","name":"subcategory","type":"options","typeOptions":{"loadOptionsMethod":"getIncidentSubcategories","loadOptionsDependsOn":["additionalFields.category"]},"default":"","description":"The subcategory of the incident. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Urgency","name":"urgency","type":"options","options":[{"name":"Low","value":3},{"name":"Medium","value":2},{"name":"High","value":1}],"default":1,"description":"The urgency of the incident"},{"displayName":"Work Notes","name":"work_notes","type":"string","default":"","description":"Work notes for the incident"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["tableRecord"]}},"options":[{"name":"Create","value":"create","action":"Create a table record"},{"name":"Delete","value":"delete","action":"Delete a table record"},{"name":"Get","value":"get","action":"Get a table record"},{"name":"Get Many","value":"getAll","action":"Get many table records"},{"name":"Update","value":"update","action":"Update a table record"}],"default":"get"},{"displayName":"Table Name or ID","name":"tableName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTables"},"default":"","displayOptions":{"show":{"resource":["tableRecord"],"operation":["create"]}},"required":true},{"displayName":"Data to Send","name":"dataToSend","type":"options","options":[{"name":"Auto-Map Input Data to Columns","value":"mapInput","description":"Use when node input names match destination field names"},{"name":"Define Below for Each Column","value":"columns","description":"Set the value for each destination column"},{"name":"Nothing","value":"nothing","description":"Don't send any column data"}],"displayOptions":{"show":{"resource":["tableRecord"],"operation":["create"]}},"default":"columns"},{"displayName":"Inputs to Ignore","name":"inputsToIgnore","type":"string","displayOptions":{"show":{"resource":["tableRecord"],"operation":["create"],"dataToSend":["mapInput"]}},"default":"","description":"List of input properties to avoid sending, separated by commas. Leave empty to send all inputs."},{"displayName":"Fields to Send","name":"fieldsToSend","type":"fixedCollection","placeholder":"Add field to send","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["tableRecord"],"operation":["create"],"dataToSend":["columns"]}},"default":{},"options":[{"displayName":"Field","name":"field","values":[{"displayName":"Field Name or ID","name":"column","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["tableName"]},"default":""},{"displayName":"Field Value","name":"value","type":"string","default":""}]}]},{"displayName":"Table Name or ID","name":"tableName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTables"},"default":"","displayOptions":{"show":{"resource":["tableRecord"],"operation":["getAll"]}},"required":true},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["tableRecord"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["tableRecord"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["tableRecord"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["tableName"]},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Table Name or ID","name":"tableName","type":"options","typeOptions":{"loadOptionsMethod":"getTables"},"default":"","displayOptions":{"show":{"resource":["tableRecord"],"operation":["delete","get"]}},"required":true,"description":"Name of the table in which the record exists. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Table Record ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["tableRecord"],"operation":["delete","get"]}},"required":true,"description":"Unique identifier of the record"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["tableRecord"],"operation":["get"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["tableName"]},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Table Name or ID","name":"tableName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTables"},"default":"","displayOptions":{"show":{"resource":["tableRecord"],"operation":["update"]}},"required":true},{"displayName":"Table Record ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["tableRecord"],"operation":["update"]}},"required":true,"description":"Unique identifier of the record"},{"displayName":"Data to Send","name":"dataToSend","type":"options","options":[{"name":"Auto-Map Input Data to Columns","value":"mapInput","description":"Use when node input names match destination field names"},{"name":"Define Below for Each Column","value":"columns","description":"Set the value for each destination column"},{"name":"Nothing","value":"nothing","description":"Don't send any column data"}],"displayOptions":{"show":{"resource":["tableRecord"],"operation":["update"]}},"default":"columns"},{"displayName":"Inputs to Ignore","name":"inputsToIgnore","type":"string","displayOptions":{"show":{"resource":["tableRecord"],"operation":["update"],"dataToSend":["mapInput"]}},"default":"","description":"List of input properties to avoid sending, separated by commas. Leave empty to send all inputs."},{"displayName":"Fields to Send","name":"fieldsToSend","type":"fixedCollection","placeholder":"Add field to send","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["tableRecord"],"operation":["update"],"dataToSend":["columns"]}},"default":{},"options":[{"displayName":"Field","name":"field","values":[{"displayName":"Field Name or ID","name":"column","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["tableName"]},"default":""},{"displayName":"Field Value","name":"value","type":"string","default":""}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["user"]}},"options":[{"name":"Create","value":"create","action":"Create a user"},{"name":"Delete","value":"delete","action":"Delete a user"},{"name":"Get","value":"get","action":"Get a user"},{"name":"Get Many","value":"getAll","action":"Get many users"},{"name":"Update","value":"update","action":"Update a user"}],"default":"get"},{"displayName":"Short Description","name":"short_description","type":"string","default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"required":true,"description":"Short description of the user"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"default":{},"options":[{"displayName":"Active","name":"active","type":"boolean","default":false,"description":"Whether to activate the user"},{"displayName":"Building","name":"building","type":"string","default":"","description":"The Building address"},{"displayName":"City","name":"city","type":"string","default":"","description":"City of the user"},{"displayName":"Company","name":"company","type":"string","default":"","description":"The name of the company for the user"},{"displayName":"Country","name":"country","type":"string","default":"","description":"Country of the user"},{"displayName":"Department","name":"department","type":"string","default":"","description":"Department of the user"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"The email address associated with the user"},{"displayName":"First Name","name":"first_name","type":"string","default":"","description":"The first name of the user"},{"displayName":"Gender","name":"gender","type":"string","default":"","description":"The gender of the user"},{"displayName":"Home Phone","name":"home_phone","type":"string","default":"","description":"Home phone of the user"},{"displayName":"Last Name","name":"last_name","type":"string","default":"","description":"The last name of the user"},{"displayName":"Location","name":"location","type":"string","default":"","description":"Location of the user"},{"displayName":"Manager","name":"manager","type":"string","default":"","description":"Manager of the user"},{"displayName":"Middle Name","name":"middle_name","type":"string","default":"","description":"The middle name of the user"},{"displayName":"Mobile Phone","name":"mobile_phone","type":"string","default":"","description":"Mobile phone number of the user"},{"displayName":"Password","name":"user_password","type":"string","typeOptions":{"password":true},"default":"","description":"The user's password"},{"displayName":"Password Needs Reset","name":"password_needs_reset","type":"boolean","default":false,"description":"Whether to require a password reset when the user logs in"},{"displayName":"Phone","name":"phone","type":"string","default":"","description":"The main phone number of the user"},{"displayName":"Role Names or IDs","name":"roles","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getUserRoles"},"default":[],"description":"Roles of the user. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Source","name":"source","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":"","description":"State for the user"},{"displayName":"Street","name":"street","type":"string","default":"","description":"Street information for the user separated by comma"},{"displayName":"Username","name":"user_name","type":"string","default":"","description":"A username associated with the user (e.g. user_name.123)"},{"displayName":"Zip Code","name":"zip","type":"string","default":"","description":"Zip code for the user"}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["user"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["user"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["user"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["operation"]},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Retrieve Identifier","name":"getOption","type":"options","default":"id","options":[{"name":"ID","value":"id"},{"name":"Username","value":"user_name"}],"displayOptions":{"show":{"resource":["user"],"operation":["get"]}},"required":true,"description":"Unique identifier of the user"},{"displayName":"Username","name":"user_name","type":"string","default":"","displayOptions":{"show":{"resource":["user"],"operation":["get"],"getOption":["user_name"]}},"required":true,"description":"Unique identifier of the user"},{"displayName":"User ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["user"],"operation":["get"],"getOption":["id"]}},"required":true,"description":"Unique identifier of the user"},{"displayName":"User ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["user"],"operation":["delete"]}},"required":true,"description":"Unique identifier of the user"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["user"],"operation":["get"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns","loadOptionsDependsOn":["operation"]},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"User ID","name":"id","type":"string","default":"","displayOptions":{"show":{"resource":["user"],"operation":["update"]}},"required":true,"description":"Unique identifier of the user"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["user"],"operation":["update"]}},"default":{},"options":[{"displayName":"Active","name":"active","type":"boolean","default":false,"description":"Whether to activate the user"},{"displayName":"Building","name":"building","type":"string","default":"","description":"The Building address"},{"displayName":"City","name":"city","type":"string","default":"","description":"City of the user"},{"displayName":"Company","name":"company","type":"string","default":"","description":"The name of the company for the user"},{"displayName":"Country","name":"country","type":"string","default":"","description":"Country of the user"},{"displayName":"Department","name":"department","type":"string","default":"","description":"Department of the user"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"The email address associated with the user"},{"displayName":"First Name","name":"first_name","type":"string","default":"","description":"The first name of the user"},{"displayName":"Gender","name":"gender","type":"string","default":"","description":"The gender of the user"},{"displayName":"Home Phone","name":"home_phone","type":"string","default":"","description":"Home phone of the user"},{"displayName":"Last Name","name":"last_name","type":"string","default":"","description":"The last name of the user"},{"displayName":"Location","name":"location","type":"string","default":"","description":"Location of the user"},{"displayName":"Manager","name":"manager","type":"string","default":"","description":"Manager of the user"},{"displayName":"Middle Name","name":"middle_name","type":"string","default":"","description":"The middle name of the user"},{"displayName":"Mobile Phone","name":"mobile_phone","type":"string","default":"","description":"Mobile phone number of the user"},{"displayName":"Password","name":"user_password","type":"string","typeOptions":{"password":true},"default":"","description":"The user's password"},{"displayName":"Password Needs Reset","name":"password_needs_reset","type":"boolean","default":false,"description":"Whether to require a password reset when the user logs in"},{"displayName":"Phone","name":"phone","type":"string","default":"","description":"The main phone number of the user"},{"displayName":"Role Names or IDs","name":"roles","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getUserRoles"},"default":[],"description":"Roles of the user. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Source","name":"source","type":"string","default":""},{"displayName":"State","name":"state","type":"string","default":"","description":"State for the user"},{"displayName":"Street","name":"street","type":"string","default":"","description":"Street information for the user separated by comma"},{"displayName":"Username","name":"user_name","type":"string","default":"","description":"A username associated with the user (e.g. user_name.123)"},{"displayName":"Zip Code","name":"zip","type":"string","default":"","description":"Zip code for the user"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["userGroup"]}},"options":[{"name":"Get Many","value":"getAll","action":"Get many user groups"}],"default":"getAll"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["userGroup"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["userGroup"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["userGroup"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["userRole"]}},"options":[{"name":"Get Many","value":"getAll","action":"Get many user roles"}],"default":"getAll"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"operation":["getAll"],"resource":["userRole"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"operation":["getAll"],"resource":["userRole"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":500},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"resource":["userRole"],"operation":["getAll"]}},"default":{},"options":[{"displayName":"Exclude Reference Link","name":"sysparm_exclude_reference_link","type":"boolean","default":false,"description":"Whether to exclude Table API links for reference fields"},{"displayName":"Field Names or IDs","name":"sysparm_fields","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getColumns"},"default":[],"description":"A list of fields to return. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","hint":"String of comma separated values or an array of strings can be set in an expression"},{"displayName":"Filter","name":"sysparm_query","type":"string","default":"","description":"An encoded query string used to filter the results. <a href=\"https://developer.servicenow.com/dev.do#!/learn/learning-plans/quebec/servicenow_application_developer/app_store_learnv2_rest_quebec_more_about_query_parameters\">More info</a>."},{"displayName":"Return Values","name":"sysparm_display_value","type":"options","options":[{"name":"Actual Values","value":"false"},{"name":"Both","value":"all"},{"name":"Display Values","value":"true"}],"default":"false","description":"Choose which values to return"}]}],"codex":{"categories":["Productivity","Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.servicenow/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/serviceNow/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/ServiceNow/servicenow.svg"},
|
|
358
|
-
{"displayName":"Edit Fields (Set)","name":"n8n-nodes-base.set","icon":"fa:pen","group":["input"],"description":"Modify, add, or remove item fields","defaultVersion":3.4,"iconColor":"blue","version":[3,3.1,3.2,3.3,3.4],"subtitle":"={{$parameter[\"mode\"]}}","defaults":{"name":"Edit Fields"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Mode","name":"mode","type":"options","noDataExpression":true,"options":[{"name":"Manual Mapping","value":"manual","description":"Edit item fields one by one","action":"Edit item fields one by one"},{"name":"JSON","value":"raw","description":"Customize item output with JSON","action":"Customize item output with JSON"}],"default":"manual"},{"displayName":"Duplicate Item","name":"duplicateItem","type":"boolean","default":false,"isNodeSetting":true},{"displayName":"Duplicate Item Count","name":"duplicateCount","type":"number","default":0,"typeOptions":{"minValue":0},"description":"How many times the item should be duplicated, mainly used for testing and debugging","isNodeSetting":true,"displayOptions":{"show":{"duplicateItem":[true]}}},{"displayName":"Item duplication is set in the node settings. This option will be ignored when the workflow runs automatically.","name":"duplicateWarning","type":"notice","default":"","displayOptions":{"show":{"duplicateItem":[true]}}},{"displayName":"JSON","name":"jsonOutput","type":"json","typeOptions":{"rows":5},"default":"{\n \"my_field_1\": \"value\",\n \"my_field_2\": 1\n}\n","validateType":"object","ignoreValidationDuringExecution":true,"displayOptions":{"show":{"mode":["raw"]}}},{"displayName":"Fields to Set","name":"fields","placeholder":"Add Field","type":"fixedCollection","description":"Edit existing fields or add new ones to modify the output data","displayOptions":{"show":{"@version":[3,3.1,3.2],"mode":["manual"]}},"typeOptions":{"multipleValues":true,"sortable":true},"default":{},"options":[{"name":"values","displayName":"Values","values":[{"displayName":"Name","name":"name","type":"string","default":"","placeholder":"e.g. fieldName","description":"Name of the field to set the value of. Supports dot-notation. Example: data.person[0].name.","requiresDataPath":"single"},{"displayName":"Type","name":"type","type":"options","description":"The field value type","options":[{"name":"String","value":"stringValue"},{"name":"Number","value":"numberValue"},{"name":"Boolean","value":"booleanValue"},{"name":"Array","value":"arrayValue"},{"name":"Object","value":"objectValue"}],"default":"stringValue"},{"displayName":"Value","name":"stringValue","type":"string","default":"","displayOptions":{"show":{"type":["stringValue"]}},"validateType":"string","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"numberValue","type":"string","default":"","displayOptions":{"show":{"type":["numberValue"]}},"validateType":"number","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"booleanValue","type":"options","default":"true","options":[{"name":"True","value":"true"},{"name":"False","value":"false"}],"displayOptions":{"show":{"type":["booleanValue"]}},"validateType":"boolean","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"arrayValue","type":"string","default":"","placeholder":"e.g. [ arrayItem1, arrayItem2, arrayItem3 ]","displayOptions":{"show":{"type":["arrayValue"]}},"validateType":"array","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"objectValue","type":"json","default":"={}","typeOptions":{"rows":2},"displayOptions":{"show":{"type":["objectValue"]}},"validateType":"object","ignoreValidationDuringExecution":true}]}]},{"displayName":"Fields to Set","name":"assignments","type":"assignmentCollection","displayOptions":{"hide":{"@version":[3,3.1,3.2]},"show":{"mode":["manual"]}},"default":{}},{"displayName":"Include in Output","name":"include","type":"options","description":"How to select the fields you want to include in your output items","default":"all","displayOptions":{"show":{"@version":[3,3.1,3.2]}},"options":[{"name":"All Input Fields","value":"all","description":"Also include all unchanged fields from the input"},{"name":"No Input Fields","value":"none","description":"Include only the fields specified above"},{"name":"Selected Input Fields","value":"selected","description":"Also include the fields listed in the parameter “Fields to Include”"},{"name":"All Input Fields Except","value":"except","description":"Exclude the fields listed in the parameter “Fields to Exclude”"}]},{"displayName":"Include Other Input Fields","name":"includeOtherFields","type":"boolean","default":false,"description":"Whether to pass to the output all the input fields (along with the fields set in 'Fields to Set')","displayOptions":{"hide":{"@version":[3,3.1,3.2]}}},{"displayName":"Input Fields to Include","name":"include","type":"options","description":"How to select the fields you want to include in your output items","default":"all","displayOptions":{"hide":{"@version":[3,3.1,3.2],"/includeOtherFields":[false]}},"options":[{"name":"All","value":"all","description":"Also include all unchanged fields from the input"},{"name":"Selected","value":"selected","description":"Also include the fields listed in the parameter “Fields to Include”"},{"name":"All Except","value":"except","description":"Exclude the fields listed in the parameter “Fields to Exclude”"}]},{"displayName":"Fields to Include","name":"includeFields","type":"string","default":"","placeholder":"e.g. fieldToInclude1,fieldToInclude2","description":"Comma-separated list of the field names you want to include in the output. You can drag the selected fields from the input panel.","requiresDataPath":"multiple","displayOptions":{"show":{"include":["selected"]}}},{"displayName":"Fields to Exclude","name":"excludeFields","type":"string","default":"","placeholder":"e.g. fieldToExclude1,fieldToExclude2","description":"Comma-separated list of the field names you want to exclude from the output. You can drag the selected fields from the input panel.","requiresDataPath":"multiple","displayOptions":{"show":{"include":["except"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Include Binary File","name":"includeBinary","type":"boolean","default":true,"displayOptions":{"hide":{"@version":[{"_cnd":{"gte":3.4}}]}},"description":"Whether binary data should be included if present in the input item"},{"displayName":"Strip Binary Data","name":"stripBinary","type":"boolean","default":true,"description":"Whether binary data should be stripped from the input item. Only applies when \"Include Other Input Fields\" is enabled.","displayOptions":{"show":{"@version":[{"_cnd":{"gte":3.4}}],"/includeOtherFields":[true]}}},{"displayName":"Ignore Type Conversion Errors","name":"ignoreConversionErrors","type":"boolean","default":false,"description":"Whether to ignore field type errors and apply a less strict type conversion","displayOptions":{"show":{"/mode":["manual"]}}},{"displayName":"Support Dot Notation","name":"dotNotation","type":"boolean","default":true,"description":"By default, dot-notation is used in property names. This means that \"a.b\" will set the property \"b\" underneath \"a\" so { \"a\": { \"b\": value} }. If that is not intended this can be deactivated, it will then set { \"a.b\": value } instead."}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"}]},"alias":["Set","JS","JSON","Filter","Transform","Map"]}},
|
|
359
|
+
{"displayName":"Edit Fields (Set)","name":"n8n-nodes-base.set","icon":"fa:pen","group":["input"],"description":"Modify, add, or remove item fields","defaultVersion":3.4,"iconColor":"blue","version":[3,3.1,3.2,3.3,3.4],"subtitle":"={{$parameter[\"mode\"]}}","defaults":{"name":"Edit Fields"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Mode","name":"mode","type":"options","noDataExpression":true,"options":[{"name":"Manual Mapping","value":"manual","description":"Edit item fields one by one","action":"Edit item fields one by one"},{"name":"JSON","value":"raw","description":"Customize item output with JSON","action":"Customize item output with JSON"}],"default":"manual"},{"displayName":"Duplicate Item","name":"duplicateItem","type":"boolean","default":false,"isNodeSetting":true},{"displayName":"Duplicate Item Count","name":"duplicateCount","type":"number","default":0,"typeOptions":{"minValue":0},"description":"How many times the item should be duplicated, mainly used for testing and debugging","isNodeSetting":true,"displayOptions":{"show":{"duplicateItem":[true]}}},{"displayName":"Item duplication is set in the node settings. This option will be ignored when the workflow runs automatically.","name":"duplicateWarning","type":"notice","default":"","displayOptions":{"show":{"duplicateItem":[true]}}},{"displayName":"JSON","name":"jsonOutput","type":"json","typeOptions":{"rows":5},"default":"{\n \"my_field_1\": \"value\",\n \"my_field_2\": 1\n}\n","validateType":"object","ignoreValidationDuringExecution":true,"displayOptions":{"show":{"mode":["raw"]}}},{"displayName":"Fields to Set","name":"fields","placeholder":"Add Field","type":"fixedCollection","description":"Edit existing fields or add new ones to modify the output data","displayOptions":{"show":{"@version":[3,3.1,3.2],"mode":["manual"]}},"typeOptions":{"multipleValues":true,"sortable":true},"default":{},"options":[{"name":"values","displayName":"Values","values":[{"displayName":"Name","name":"name","type":"string","default":"","placeholder":"e.g. fieldName","description":"Name of the field to set the value of. Supports dot-notation. Example: data.person[0].name.","requiresDataPath":"single"},{"displayName":"Type","name":"type","type":"options","description":"The field value type","options":[{"name":"String","value":"stringValue"},{"name":"Number","value":"numberValue"},{"name":"Boolean","value":"booleanValue"},{"name":"Array","value":"arrayValue"},{"name":"Object","value":"objectValue"}],"default":"stringValue"},{"displayName":"Value","name":"stringValue","type":"string","default":"","displayOptions":{"show":{"type":["stringValue"]}},"validateType":"string","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"numberValue","type":"string","default":"","displayOptions":{"show":{"type":["numberValue"]}},"validateType":"number","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"booleanValue","type":"options","default":"true","options":[{"name":"True","value":"true"},{"name":"False","value":"false"}],"displayOptions":{"show":{"type":["booleanValue"]}},"validateType":"boolean","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"arrayValue","type":"string","default":"","placeholder":"e.g. [ arrayItem1, arrayItem2, arrayItem3 ]","displayOptions":{"show":{"type":["arrayValue"]}},"validateType":"array","ignoreValidationDuringExecution":true},{"displayName":"Value","name":"objectValue","type":"json","default":"={}","typeOptions":{"rows":2},"displayOptions":{"show":{"type":["objectValue"]}},"validateType":"object","ignoreValidationDuringExecution":true}]}]},{"displayName":"Fields to Set","name":"assignments","type":"assignmentCollection","displayOptions":{"hide":{"@version":[3,3.1,3.2]},"show":{"mode":["manual"]}},"default":{}},{"displayName":"Include in Output","name":"include","type":"options","description":"How to select the fields you want to include in your output items","default":"all","displayOptions":{"show":{"@version":[3,3.1,3.2]}},"options":[{"name":"All Input Fields","value":"all","description":"Also include all unchanged fields from the input"},{"name":"No Input Fields","value":"none","description":"Include only the fields specified above"},{"name":"Selected Input Fields","value":"selected","description":"Also include the fields listed in the parameter “Fields to Include”"},{"name":"All Input Fields Except","value":"except","description":"Exclude the fields listed in the parameter “Fields to Exclude”"}]},{"displayName":"Include Other Input Fields","name":"includeOtherFields","type":"boolean","default":false,"description":"Whether to pass to the output all the input fields (along with the fields set in 'Fields to Set')","displayOptions":{"hide":{"@version":[3,3.1,3.2]}}},{"displayName":"Input Fields to Include","name":"include","type":"options","description":"How to select the fields you want to include in your output items","default":"all","displayOptions":{"hide":{"@version":[3,3.1,3.2],"/includeOtherFields":[false]}},"options":[{"name":"All","value":"all","description":"Also include all unchanged fields from the input"},{"name":"Selected","value":"selected","description":"Also include the fields listed in the parameter “Fields to Include”"},{"name":"All Except","value":"except","description":"Exclude the fields listed in the parameter “Fields to Exclude”"}]},{"displayName":"Fields to Include","name":"includeFields","type":"string","default":"","placeholder":"e.g. fieldToInclude1,fieldToInclude2","description":"Comma-separated list of the field names you want to include in the output. You can drag the selected fields from the input panel.","requiresDataPath":"multiple","displayOptions":{"show":{"include":["selected"],"@version":[3,3.1,3.2]}}},{"displayName":"Fields to Exclude","name":"excludeFields","type":"string","default":"","placeholder":"e.g. fieldToExclude1,fieldToExclude2","description":"Comma-separated list of the field names you want to exclude from the output. You can drag the selected fields from the input panel.","requiresDataPath":"multiple","displayOptions":{"show":{"include":["except"],"@version":[3,3.1,3.2]}}},{"displayName":"Fields to Include","name":"includeFields","type":"string","default":"","placeholder":"e.g. fieldToInclude1,fieldToInclude2","description":"Comma-separated list of the field names you want to include in the output. You can drag the selected fields from the input panel.","requiresDataPath":"multiple","displayOptions":{"show":{"include":["selected"],"/includeOtherFields":[true]},"hide":{"@version":[3,3.1,3.2]}}},{"displayName":"Fields to Exclude","name":"excludeFields","type":"string","default":"","placeholder":"e.g. fieldToExclude1,fieldToExclude2","description":"Comma-separated list of the field names you want to exclude from the output. You can drag the selected fields from the input panel.","requiresDataPath":"multiple","displayOptions":{"show":{"include":["except"],"/includeOtherFields":[true]},"hide":{"@version":[3,3.1,3.2]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Include Binary File","name":"includeBinary","type":"boolean","default":true,"displayOptions":{"hide":{"@version":[{"_cnd":{"gte":3.4}}]}},"description":"Whether binary data should be included if present in the input item"},{"displayName":"Strip Binary Data","name":"stripBinary","type":"boolean","default":true,"description":"Whether binary data should be stripped from the input item. Only applies when \"Include Other Input Fields\" is enabled.","displayOptions":{"show":{"@version":[{"_cnd":{"gte":3.4}}],"/includeOtherFields":[true]}}},{"displayName":"Ignore Type Conversion Errors","name":"ignoreConversionErrors","type":"boolean","default":false,"description":"Whether to ignore field type errors and apply a less strict type conversion","displayOptions":{"show":{"/mode":["manual"]}}},{"displayName":"Support Dot Notation","name":"dotNotation","type":"boolean","default":true,"description":"By default, dot-notation is used in property names. This means that \"a.b\" will set the property \"b\" underneath \"a\" so { \"a\": { \"b\": value} }. If that is not intended this can be deactivated, it will then set { \"a.b\": value } instead."}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"}]},"alias":["Set","JS","JSON","Filter","Transform","Map"]}},
|
|
359
360
|
{"displayName":"Set","name":"n8n-nodes-base.set","icon":"fa:pen","group":["input"],"description":"Sets values on items and optionally remove other values","defaultVersion":3.4,"version":[1,2],"defaults":{"name":"Set","color":"#0000FF"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Keep Only Set","name":"keepOnlySet","type":"boolean","default":false,"description":"Whether only the values set on this node should be kept and all others removed"},{"displayName":"Values to Set","name":"values","placeholder":"Add Value","type":"fixedCollection","typeOptions":{"multipleValues":true,"sortable":true},"description":"The value to set","default":{},"options":[{"name":"boolean","displayName":"Boolean","values":[{"displayName":"Name","name":"name","type":"string","requiresDataPath":"single","default":"propertyName","description":"Name of the property to write data to. Supports dot-notation. Example: \"data.person[0].name\""},{"displayName":"Value","name":"value","type":"boolean","default":false,"description":"The boolean value to write in the property"}]},{"name":"number","displayName":"Number","values":[{"displayName":"Name","name":"name","type":"string","default":"propertyName","requiresDataPath":"single","description":"Name of the property to write data to. Supports dot-notation. Example: \"data.person[0].name\""},{"displayName":"Value","name":"value","type":"number","default":0,"description":"The number value to write in the property"}]},{"name":"string","displayName":"String","values":[{"displayName":"Name","name":"name","type":"string","default":"propertyName","requiresDataPath":"single","description":"Name of the property to write data to. Supports dot-notation. Example: \"data.person[0].name\""},{"displayName":"Value","name":"value","type":"string","default":"","description":"The string value to write in the property"}]}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Dot Notation","name":"dotNotation","type":"boolean","default":true,"description":"<p>By default, dot-notation is used in property names. This means that \"a.b\" will set the property \"b\" underneath \"a\" so { \"a\": { \"b\": value} }.<p></p>If that is not intended this can be deactivated, it will then set { \"a.b\": value } instead.</p>."}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"}]},"alias":["Set","JS","JSON","Filter","Transform","Map"]}},
|
|
360
361
|
{"displayName":"Shopify","name":"n8n-nodes-base.shopify","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Shopify API","defaults":{"name":"Shopify"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"shopifyApi","required":true,"displayOptions":{"show":{"authentication":["apiKey"]}}},{"name":"shopifyAccessTokenApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"]}}},{"name":"shopifyOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"properties":[{"displayName":"Shopify API Version: 2024-07","type":"notice","name":"apiVersion","default":"","isNodeSetting":true},{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"},{"name":"API Key","value":"apiKey"}],"default":"apiKey"},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Order","value":"order"},{"name":"Product","value":"product"}],"default":"order"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["order"]}},"options":[{"name":"Create","value":"create","description":"Create an order","action":"Create an order"},{"name":"Delete","value":"delete","description":"Delete an order","action":"Delete an order"},{"name":"Get","value":"get","description":"Get an order","action":"Get an order"},{"name":"Get Many","value":"getAll","description":"Get many orders","action":"Get many orders"},{"name":"Update","value":"update","description":"Update an order","action":"Update an order"}],"default":"create"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["create"],"resource":["order"]}},"default":{},"options":[{"displayName":"Billing Address","name":"billingAddressUi","placeholder":"Add Billing Address","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"name":"billingAddressValues","displayName":"Billing Address","values":[{"displayName":"First Name","name":"firstName","type":"string","default":""},{"displayName":"Last Name","name":"lastName","type":"string","default":""},{"displayName":"Company","name":"company","type":"string","default":""},{"displayName":"Country","name":"country","type":"string","default":""},{"displayName":"Address Line 1","name":"address1","type":"string","default":""},{"displayName":"Address Line 2","name":"address2","type":"string","default":""},{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Province","name":"province","type":"string","default":""},{"displayName":"Zip Code","name":"zip","type":"string","default":""},{"displayName":"Phone","name":"phone","type":"string","default":""}]}]},{"displayName":"Discount Codes","name":"discountCodesUi","placeholder":"Add Discount Code","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"options":[{"name":"discountCodesValues","displayName":"Discount Code","values":[{"displayName":"Amount","name":"amount","type":"string","default":"","description":"The amount that's deducted from the order total"},{"displayName":"Code","name":"code","type":"string","default":"","description":"When the associated discount application is of type code"},{"displayName":"Type","name":"type","type":"options","options":[{"name":"Fixed Amount","value":"fixedAmount","description":"Applies amount as a unit of the store's currency"},{"name":"Percentage","value":"percentage","description":"Applies a discount of amount as a percentage of the order total"},{"name":"Shipping","value":"shipping","description":"Applies a free shipping discount on orders that have a shipping rate less than or equal to amount"}],"default":"fixedAmount","description":"When the associated discount application is of type code"}]}]},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"The customer's email address"},{"displayName":"Fulfillment Status","name":"fulfillmentStatus","type":"options","options":[{"name":"Fulfilled","value":"fulfilled","description":"Every line item in the order has been fulfilled"},{"name":"Null","value":"null","description":"None of the line items in the order have been fulfilled"},{"name":"Partial","value":"partial","description":"At least one line item in the order has been fulfilled"},{"name":"Restocked","value":"restocked","description":"Every line item in the order has been restocked and the order canceled"}],"default":"","description":"The order's status in terms of fulfilled line items"},{"displayName":"Inventory Behaviour","name":"inventoryBehaviour","type":"options","options":[{"name":"Bypass","value":"bypass","description":"Do not claim inventory"},{"name":"Decrement Ignoring Policy","value":"decrementIgnoringPolicy","description":"Ignore the product's inventory policy and claim inventory"},{"name":"Decrement Obeying Policy","value":"decrementObeyingPolicy","description":"Follow the product's inventory policy and claim inventory, if possible"}],"default":"bypass","description":"The behaviour to use when updating inventory"},{"displayName":"Location Name or ID","name":"locationId","type":"options","typeOptions":{"loadOptionsMethod":"getLocations"},"default":"","description":"The ID of the physical location where the order was processed. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Note","name":"note","type":"string","default":"","description":"An optional note that a shop owner can attach to the order"},{"displayName":"Send Fulfillment Receipt","name":"sendFulfillmentReceipt","type":"boolean","default":false,"description":"Whether to send a shipping confirmation to the customer"},{"displayName":"Send Receipt","name":"sendReceipt","type":"boolean","default":false,"description":"Whether to send an order confirmation to the customer"},{"displayName":"Shipping Address","name":"shippingAddressUi","placeholder":"Add Shipping","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"name":"shippingAddressValues","displayName":"Shipping Address","values":[{"displayName":"First Name","name":"firstName","type":"string","default":""},{"displayName":"Last Name","name":"lastName","type":"string","default":""},{"displayName":"Company","name":"company","type":"string","default":""},{"displayName":"Country","name":"country","type":"string","default":""},{"displayName":"Address Line 1","name":"address1","type":"string","default":""},{"displayName":"Address Line 2","name":"address2","type":"string","default":""},{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Province","name":"province","type":"string","default":""},{"displayName":"Zip Code","name":"zip","type":"string","default":""},{"displayName":"Phone","name":"phone","type":"string","default":""}]}]},{"displayName":"Source Name","name":"sourceName","type":"string","default":"","description":"Where the order originated. Can be set only during order creation, and is not writeable afterwards."},{"displayName":"Tags","name":"tags","type":"string","default":"","description":"Tags attached to the order, formatted as a string of comma-separated values"},{"displayName":"Test","name":"test","type":"boolean","default":false,"description":"Whether this is a test order"}]},{"displayName":"Line Items","name":"limeItemsUi","placeholder":"Add Line Item","type":"fixedCollection","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["order"],"operation":["create"]}},"default":{},"options":[{"displayName":"Line Item","name":"lineItemValues","values":[{"displayName":"Product Name or ID","name":"productId","type":"options","typeOptions":{"loadOptionsMethod":"getProducts"},"default":"","description":"The ID of the product that the line item belongs to. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Variant ID","name":"variantId","type":"string","default":"","description":"The ID of the product variant"},{"displayName":"Title","name":"title","type":"string","default":"","description":"The title of the product"},{"displayName":"Grams","name":"grams","type":"string","default":"","description":"The weight of the item in grams"},{"displayName":"Quantity","name":"quantity","type":"number","typeOptions":{"minValue":1},"default":1,"description":"The number of items that were purchased"},{"displayName":"Price","name":"price","type":"string","default":""}]}]},{"displayName":"Order ID","name":"orderId","type":"string","default":"","displayOptions":{"show":{"resource":["order"],"operation":["delete"]}},"required":true},{"displayName":"Order ID","name":"orderId","type":"string","default":"","displayOptions":{"show":{"resource":["order"],"operation":["get"]}},"required":true},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["get"],"resource":["order"]}},"default":{},"options":[{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the order will return, formatted as a string of comma-separated values. By default all the fields are returned."}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["order"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["order"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":250},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["getAll"],"resource":["order"]}},"options":[{"displayName":"Attribution App ID","name":"attributionAppId","type":"string","default":"","description":"Show orders attributed to a certain app, specified by the app ID. Set as current to show orders for the app currently consuming the API."},{"displayName":"Created At Min","name":"createdAtMin","type":"dateTime","default":"","description":"Show orders created at or after date"},{"displayName":"Created At Max","name":"createdAtMax","type":"dateTime","default":"","description":"Show orders created at or before date"},{"displayName":"Financial Status","name":"financialStatus","type":"options","options":[{"name":"Any","value":"any","description":"Show orders of any financial status"},{"name":"Authorized","value":"authorized","description":"Show only authorized orders"},{"name":"Paid","value":"paid","description":"Show only paid orders"},{"name":"Partially Paid","value":"partiallyPaid","description":"Show only partially paid orders"},{"name":"Partially Refunded","value":"partiallyRefunded","description":"Show only partially refunded orders"},{"name":"Pending","value":"pending","description":"Show only pending orders"},{"name":"Refunded","value":"refunded","description":"Show only refunded orders"},{"name":"Unpaid","value":"unpaid","description":"Show authorized and partially paid orders"},{"name":"Voided","value":"voided","description":"Show only voided orders"}],"default":"any","description":"Filter orders by their financial status"},{"displayName":"Fulfillment Status","name":"fulfillmentStatus","type":"options","options":[{"name":"Any","value":"any","description":"Show orders of any fulfillment status"},{"name":"Partial","value":"partial","description":"Show partially shipped orders"},{"name":"Shipped","value":"shipped","description":"Show orders that have been shipped. Returns orders with fulfillment_status of fulfilled."},{"name":"Unfulfilled","value":"unfulfilled","description":"Returns orders with fulfillment_status of null or partial"},{"name":"Unshipped","value":"unshipped","description":"Show orders that have not yet been shipped. Returns orders with fulfillment_status of null."}],"default":"any","description":"Filter orders by their fulfillment status"},{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the orders will return, formatted as a string of comma-separated values. By default all the fields are returned."},{"displayName":"IDs","name":"ids","type":"string","default":"","description":"Retrieve only orders specified by a comma-separated list of order IDs"},{"displayName":"Processed At Max","name":"processedAtMax","type":"dateTime","default":"","description":"Show orders imported at or before date"},{"displayName":"Processed At Min","name":"processedAtMin","type":"dateTime","default":"","description":"Show orders imported at or after date"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Any","value":"any","description":"Show orders of any status, including archived orders"},{"name":"Cancelled","value":"Cancelled","description":"Show only canceled orders"},{"name":"Closed","value":"closed","description":"Show only closed orders"},{"name":"Open","value":"open","description":"Show only open orders"}],"default":"open","description":"Filter orders by their status"},{"displayName":"Since ID","name":"sinceId","type":"string","default":"","description":"Show orders after the specified ID"},{"displayName":"Updated At Max","name":"updatedAtMax","type":"dateTime","default":"","description":"Show orders last updated at or after date"},{"displayName":"Updated At Min","name":"updatedAtMin","type":"dateTime","default":"","description":"Show orders last updated at or before date"}]},{"displayName":"Order ID","name":"orderId","type":"string","default":"","displayOptions":{"show":{"resource":["order"],"operation":["update"]}},"required":true},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["update"],"resource":["order"]}},"default":{},"options":[{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"The customer's email address"},{"displayName":"Location Name or ID","name":"locationId","type":"options","typeOptions":{"loadOptionsMethod":"getLocations"},"default":"","description":"The ID of the physical location where the order was processed. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Note","name":"note","type":"string","default":"","description":"An optional note that a shop owner can attach to the order"},{"displayName":"Shipping Address","name":"shippingAddressUi","placeholder":"Add Shipping","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"name":"shippingAddressValues","displayName":"Shipping Address","values":[{"displayName":"First Name","name":"firstName","type":"string","default":""},{"displayName":"Last Name","name":"lastName","type":"string","default":""},{"displayName":"Company","name":"company","type":"string","default":""},{"displayName":"Country","name":"country","type":"string","default":""},{"displayName":"Address Line 1","name":"address1","type":"string","default":""},{"displayName":"Address Line 2","name":"address2","type":"string","default":""},{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Province","name":"province","type":"string","default":""},{"displayName":"Zip Code","name":"zip","type":"string","default":""},{"displayName":"Phone","name":"phone","type":"string","default":""}]}]},{"displayName":"Source Name","name":"sourceName","type":"string","default":"","description":"Where the order originated. Can be set only during order creation, and is not writeable afterwards."},{"displayName":"Tags","name":"tags","type":"string","default":"","description":"Tags attached to the order, formatted as a string of comma-separated values"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["product"]}},"options":[{"name":"Create","value":"create","description":"Create a product","action":"Create a product"},{"name":"Delete","value":"delete","description":"Delete a product","action":"Delete a product"},{"name":"Get","value":"get","description":"Get a product","action":"Get a product"},{"name":"Get Many","value":"getAll","description":"Get many products","action":"Get many products"},{"name":"Update","value":"update","description":"Update a product","action":"Update a product"}],"default":"create"},{"displayName":"Title","name":"title","type":"string","placeholder":"","displayOptions":{"show":{"operation":["create"],"resource":["product"]}},"default":"","description":"The name of the product","required":true},{"displayName":"Product ID","name":"productId","type":"string","default":"","displayOptions":{"show":{"resource":["product"],"operation":["update"]}},"required":true},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["create"],"resource":["product"]}},"default":{},"options":[{"displayName":"Body HTML","name":"body_html","type":"string","default":"","description":"A description of the product. Supports HTML formatting."},{"displayName":"Handle","name":"handle","type":"string","default":"","description":"A unique human-friendly string for the product. Automatically generated from the product's title. Used by the Liquid templating language to refer to objects."},{"displayName":"Images","name":"images","type":"collection","placeholder":"Add Image Field","typeOptions":{"multipleValues":true},"default":{},"description":"A list of product image objects, each one representing an image associated with the product","options":[{"displayName":"Created At","name":"created_at","type":"dateTime","default":"","description":"The date and time when the product image was created"},{"displayName":"ID","name":"id","type":"number","default":"","description":"A unique numeric identifier for the product image"},{"displayName":"Position","name":"position","type":"number","default":"","description":"The order of the product image in the list. The first product image is at position 1 and is the \"main\" image for the product."},{"displayName":"Product ID","name":"product_id","type":"number","default":"","description":"The ID of the product associated with the image"},{"displayName":"Variant IDs","name":"variant_ids","type":"number","typeOptions":{"multipleValues":true},"default":"","description":"An array of variant IDs associated with the image"},{"displayName":"Source","name":"src","type":"string","default":"","description":"<p>Specifies the location of the product image. This parameter supports URL filters that you can use to retrieve modified copies of the image.</p><p>For example, add _small, to the filename to retrieve a scaled copy of the image at 100 x 100 px (for example, ipod-nano_small.png), or add _2048x2048 to retrieve a copy of the image constrained at 2048 x 2048 px resolution (for example, ipod-nano_2048x2048.png).</p>."},{"displayName":"Width","name":"width","type":"number","default":"","description":"Width dimension of the image which is determined on upload"},{"displayName":"Height","name":"height","type":"number","default":"","description":"Height dimension of the image which is determined on upload"},{"displayName":"Updated At","name":"updated_at","type":"dateTime","default":"","description":"The date and time when the product image was last modified"}]},{"displayName":"Options","name":"productOptions","type":"fixedCollection","placeholder":"Add option","typeOptions":{"multipleValues":true},"default":{},"description":"The custom product property names like Size, Color, and Material. You can add up to 3 options of up to 255 characters each.","options":[{"displayName":"Option","name":"option","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Option's name"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Option's values"}]}]},{"displayName":"Product Type","name":"product_type","type":"string","default":"","description":"A categorization for the product used for filtering and searching products"},{"displayName":"Published At","name":"published_at","type":"dateTime","default":"","description":"The date and time (ISO 8601 format) when the product was published. Can be set to null to unpublish the product from the Online Store channel."},{"displayName":"Published Scope","name":"published_scope","type":"options","default":"","options":[{"name":"Global","value":"global","description":"The product is published to both the Online Store channel and the Point of Sale channel"},{"name":"Web","value":"web","description":"The product is published to the Online Store channel but not published to the Point of Sale channel"}]},{"displayName":"Tags","name":"tags","type":"string","default":"","description":"A string of comma-separated tags that are used for filtering and search. A product can have up to 250 tags. Each tag can have up to 255 characters."},{"displayName":"Template Suffix","name":"template_suffix","type":"string","default":"","description":"The suffix of the Liquid template used for the product page. If this property is specified, then the product page uses a template called \"product.suffix.liquid\", where \"suffix\" is the value of this property. If this property is \"\" or null, then the product page uses the default template \"product.liquid\". (default: null)"},{"displayName":"Vendor","name":"vendor","type":"string","default":"","description":"The name of the product's vendor"}]},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["update"],"resource":["product"]}},"default":{},"options":[{"displayName":"Body HTML","name":"body_html","type":"string","default":"","description":"A description of the product. Supports HTML formatting."},{"displayName":"Handle","name":"handle","type":"string","default":"","description":"A unique human-friendly string for the product. Automatically generated from the product's title. Used by the Liquid templating language to refer to objects."},{"displayName":"Images","name":"images","type":"collection","placeholder":"Add Image Field","typeOptions":{"multipleValues":true},"default":{},"description":"A list of product image objects, each one representing an image associated with the product","options":[{"displayName":"Created At","name":"created_at","type":"dateTime","default":"","description":"The date and time when the product image was created"},{"displayName":"ID","name":"id","type":"number","default":"","description":"A unique numeric identifier for the product image"},{"displayName":"Position","name":"position","type":"number","default":"","description":"The order of the product image in the list. The first product image is at position 1 and is the \"main\" image for the product."},{"displayName":"Product ID","name":"product_id","type":"number","default":"","description":"The ID of the product associated with the image"},{"displayName":"Variant IDs","name":"variant_ids","type":"number","typeOptions":{"multipleValues":true},"default":"","description":"An array of variant IDs associated with the image"},{"displayName":"Source","name":"src","type":"string","default":"","description":"<p>Specifies the location of the product image. This parameter supports URL filters that you can use to retrieve modified copies of the image.</p><p>For example, add _small, to the filename to retrieve a scaled copy of the image at 100 x 100 px (for example, ipod-nano_small.png), or add _2048x2048 to retrieve a copy of the image constrained at 2048 x 2048 px resolution (for example, ipod-nano_2048x2048.png).</p>."},{"displayName":"Width","name":"width","type":"number","default":"","description":"Width dimension of the image which is determined on upload"},{"displayName":"Height","name":"height","type":"number","default":"","description":"Height dimension of the image which is determined on upload"},{"displayName":"Updated At","name":"updated_at","type":"dateTime","default":"","description":"The date and time when the product image was last modified"}]},{"displayName":"Options","name":"productOptions","type":"fixedCollection","placeholder":"Add option","typeOptions":{"multipleValues":true},"default":{},"description":"The custom product property names like Size, Color, and Material. You can add up to 3 options of up to 255 characters each.","options":[{"displayName":"Option","name":"option","values":[{"displayName":"Name","name":"name","type":"string","default":"","description":"Option's name"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Option's values"}]}]},{"displayName":"Product Type","name":"product_type","type":"string","default":"","description":"A categorization for the product used for filtering and searching products"},{"displayName":"Published At","name":"published_at","type":"dateTime","default":"","description":"The date and time (ISO 8601 format) when the product was published. Can be set to null to unpublish the product from the Online Store channel."},{"displayName":"Published Scope","name":"published_scope","type":"options","default":"","options":[{"name":"Global","value":"global","description":"The product is published to both the Online Store channel and the Point of Sale channel"},{"name":"Web","value":"web","description":"The product is published to the Online Store channel but not published to the Point of Sale channel"}]},{"displayName":"Tags","name":"tags","type":"string","default":"","description":"A string of comma-separated tags that are used for filtering and search. A product can have up to 250 tags. Each tag can have up to 255 characters."},{"displayName":"Template Suffix","name":"template_suffix","type":"string","default":"","description":"The suffix of the Liquid template used for the product page. If this property is specified, then the product page uses a template called \"product.suffix.liquid\", where \"suffix\" is the value of this property. If this property is \"\" or null, then the product page uses the default template \"product.liquid\". (default: null)"},{"displayName":"Title","name":"title","type":"string","default":"","description":"The name of the product"},{"displayName":"Vendor","name":"vendor","type":"string","default":"","description":"The name of the product's vendor"}]},{"displayName":"Product ID","name":"productId","type":"string","default":"","displayOptions":{"show":{"resource":["product"],"operation":["delete"]}},"required":true},{"displayName":"Product ID","name":"productId","type":"string","default":"","displayOptions":{"show":{"resource":["product"],"operation":["get"]}},"required":true},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","displayOptions":{"show":{"operation":["get"],"resource":["product"]}},"default":{},"options":[{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Fields the product will return, formatted as a string of comma-separated values. By default all the fields are returned."}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["product"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["product"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":250},"default":50,"description":"Max number of results to return"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["getAll"],"resource":["product"]}},"options":[{"displayName":"Collection ID","name":"collection_id","type":"string","default":"","description":"Filter results by product collection ID"},{"displayName":"Created At Max","name":"created_at_max","type":"dateTime","default":"","description":"Show products created before date"},{"displayName":"Created At Min","name":"created_at_min","type":"dateTime","default":"","description":"Show products created after date"},{"displayName":"Fields","name":"fields","type":"string","default":"","description":"Show only certain fields, specified by a comma-separated list of field names"},{"displayName":"Handle","name":"handle","type":"string","default":"","description":"Filter results by product handle"},{"displayName":"IDs","name":"ids","type":"string","default":"","description":"Return only products specified by a comma-separated list of product IDs"},{"displayName":"Presentment Currencies","name":"presentment_currencies","type":"string","default":"","description":"Return presentment prices in only certain currencies, specified by a comma-separated list of ISO 4217 currency codes"},{"displayName":"Product Type","name":"product_type","type":"string","default":"","description":"Filter results by product type"},{"displayName":"Published At Max","name":"published_at_max","type":"dateTime","default":"","description":"Show products published before date"},{"displayName":"Published At Min","name":"published_at_min","type":"dateTime","default":"","description":"Show products published after date"},{"displayName":"Published Status","name":"published_status","type":"options","options":[{"name":"Any","value":"any","description":"Show all products"},{"name":"Published","value":"published","description":"Show only published products"},{"name":"Unpublished","value":"unpublished","description":"Show only unpublished products"}],"default":"any","description":"Return products by their published status"},{"displayName":"Title","name":"title","type":"string","default":"","description":"Filter results by product title"},{"displayName":"Updated At Max","name":"updated_at_max","type":"dateTime","default":"","description":"Show products last updated before date"},{"displayName":"Updated At Min","name":"updated_at_min","type":"dateTime","default":"","description":"Show products last updated after date"},{"displayName":"Vendor","name":"vendor","type":"string","default":"","description":"Filter results by product vendor"}]}],"codex":{"categories":["Sales"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.shopify/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/shopify/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Shopify/shopify.svg"},
|
|
361
362
|
{"displayName":"Shopify Trigger","name":"n8n-nodes-base.shopifyTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"event\"]}}","description":"Handle Shopify events via webhooks","defaults":{"name":"Shopify Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"shopifyApi","required":true,"displayOptions":{"show":{"authentication":["apiKey"]}}},{"name":"shopifyAccessTokenApi","required":true,"displayOptions":{"show":{"authentication":["accessToken"]}}},{"name":"shopifyOAuth2Api","required":true,"displayOptions":{"show":{"authentication":["oAuth2"]}}}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Access Token","value":"accessToken"},{"name":"OAuth2","value":"oAuth2"},{"name":"API Key","value":"apiKey"}],"default":"apiKey"},{"displayName":"Trigger On","name":"topic","type":"options","default":"","options":[{"name":"App Uninstalled","value":"app/uninstalled"},{"name":"Cart Created","value":"carts/create"},{"name":"Cart Updated","value":"carts/update"},{"name":"Checkout Created","value":"checkouts/create"},{"name":"Checkout Delete","value":"checkouts/delete"},{"name":"Checkout Update","value":"checkouts/update"},{"name":"Collection Created","value":"collections/create"},{"name":"Collection Deleted","value":"collections/delete"},{"name":"Collection Listings Added","value":"collection_listings/add"},{"name":"Collection Listings Removed","value":"collection_listings/remove"},{"name":"Collection Listings Updated","value":"collection_listings/update"},{"name":"Collection Updated","value":"collections/update"},{"name":"Customer Created","value":"customers/create"},{"name":"Customer Deleted","value":"customers/delete"},{"name":"Customer Disabled","value":"customers/disable"},{"name":"Customer Enabled","value":"customers/enable"},{"name":"Customer Groups Created","value":"customer_groups/create"},{"name":"Customer Groups Deleted","value":"customer_groups/delete"},{"name":"Customer Groups Updated","value":"customer_groups/update"},{"name":"Customer Updated","value":"customers/update"},{"name":"Draft Orders Created","value":"draft_orders/create"},{"name":"Draft Orders Deleted","value":"draft_orders/delete"},{"name":"Draft Orders Updated","value":"draft_orders/update"},{"name":"Fulfillment Created","value":"fulfillments/create"},{"name":"Fulfillment Events Created","value":"fulfillment_events/create"},{"name":"Fulfillment Events Deleted","value":"fulfillment_events/delete"},{"name":"Fulfillment Updated","value":"fulfillments/update"},{"name":"Inventory Items Created","value":"inventory_items/create"},{"name":"Inventory Items Deleted","value":"inventory_items/delete"},{"name":"Inventory Items Updated","value":"inventory_items/update"},{"name":"Inventory Levels Connected","value":"inventory_levels/connect"},{"name":"Inventory Levels Disconnected","value":"inventory_levels/disconnect"},{"name":"Inventory Levels Updated","value":"inventory_levels/update"},{"name":"Locale Created","value":"locales/create"},{"name":"Locale Updated","value":"locales/update"},{"name":"Location Created","value":"locations/create"},{"name":"Location Deleted","value":"locations/delete"},{"name":"Location Updated","value":"locations/update"},{"name":"Order Cancelled","value":"orders/cancelled"},{"name":"Order Created","value":"orders/create"},{"name":"Order Fulfilled","value":"orders/fulfilled"},{"name":"Order Paid","value":"orders/paid"},{"name":"Order Partially Fulfilled","value":"orders/partially_fulfilled"},{"name":"Order Transactions Created","value":"order_transactions/create"},{"name":"Order Updated","value":"orders/updated"},{"name":"Orders Deleted","value":"orders/delete"},{"name":"Product Created","value":"products/create"},{"name":"Product Deleted","value":"products/delete"},{"name":"Product Listings Added","value":"product_listings/add"},{"name":"Product Listings Removed","value":"product_listings/remove"},{"name":"Product Listings Updated","value":"product_listings/update"},{"name":"Product Updated","value":"products/update"},{"name":"Refund Created","value":"refunds/create"},{"name":"Shop Updated","value":"shop/update"},{"name":"Tender Transactions Created","value":"tender_transactions/create"},{"name":"Theme Created","value":"themes/create"},{"name":"Theme Deleted","value":"themes/delete"},{"name":"Theme Published","value":"themes/publish"},{"name":"Theme Updated","value":"themes/update"}]}],"codex":{"categories":["Sales"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.shopifytrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/shopify/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Shopify/shopify.svg"},
|
|
@@ -384,7 +385,7 @@
|
|
|
384
385
|
{"displayName":"Storyblok","name":"n8n-nodes-base.storyblok","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Storyblok API","defaults":{"name":"Storyblok"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"storyblokContentApi","required":true,"displayOptions":{"show":{"source":["contentApi"]}}},{"name":"storyblokManagementApi","required":true,"displayOptions":{"show":{"source":["managementApi"]}}}],"properties":[{"displayName":"Source","name":"source","type":"options","default":"contentApi","description":"Pick where your data comes from, Content or Management API","options":[{"name":"Content API","value":"contentApi"},{"name":"Management API","value":"managementApi"}]},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Story","value":"story"}],"default":"story","displayOptions":{"show":{"source":["contentApi"]}}},{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Story","value":"story"}],"default":"story","displayOptions":{"show":{"source":["managementApi"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"source":["contentApi"],"resource":["story"]}},"options":[{"name":"Get","value":"get","description":"Get a story","action":"Get a story"},{"name":"Get Many","value":"getAll","description":"Get many stories","action":"Get many stories"}],"default":"get"},{"displayName":"Identifier","name":"identifier","type":"string","default":"","required":true,"displayOptions":{"show":{"source":["contentApi"],"resource":["story"],"operation":["get"]}},"description":"The ID or slug of the story to get"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"source":["contentApi"],"resource":["story"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"source":["contentApi"],"resource":["story"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":50,"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"source":["contentApi"],"resource":["story"],"operation":["getAll"]}},"options":[{"displayName":"Starts With","name":"starts_with","type":"string","default":"","description":"Filter by slug"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"]}},"options":[{"name":"Delete","value":"delete","description":"Delete a story","action":"Delete a story"},{"name":"Get","value":"get","description":"Get a story","action":"Get a story"},{"name":"Get Many","value":"getAll","description":"Get many stories","action":"Get many stories"},{"name":"Publish","value":"publish","description":"Publish a story","action":"Publish a story"},{"name":"Unpublish","value":"unpublish","description":"Unpublish a story","action":"Unpublish a story"}],"default":"get"},{"displayName":"Space Name or ID","name":"space","type":"options","typeOptions":{"loadOptionsMethod":"getSpaces"},"default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["delete"]}},"description":"The name of the space. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Story ID","name":"storyId","type":"string","default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["delete"]}},"description":"Numeric ID of the story"},{"displayName":"Space Name or ID","name":"space","type":"options","typeOptions":{"loadOptionsMethod":"getSpaces"},"default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["get"]}},"description":"The name of the space. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Story ID","name":"storyId","type":"string","default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["get"]}},"description":"Numeric ID of the story"},{"displayName":"Space Name or ID","name":"space","type":"options","typeOptions":{"loadOptionsMethod":"getSpaces"},"default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["getAll"]}},"description":"The name of the space. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":50,"description":"Max number of results to return"},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["getAll"]}},"options":[{"displayName":"Starts With","name":"starts_with","type":"string","default":"","description":"Filter by slug"}]},{"displayName":"Space Name or ID","name":"space","type":"options","typeOptions":{"loadOptionsMethod":"getSpaces"},"default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["publish"]}},"description":"The name of the space. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Story ID","name":"storyId","type":"string","default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["publish"]}},"description":"Numeric ID of the story"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["publish"]}},"default":{},"options":[{"displayName":"Release ID","name":"releaseId","type":"string","default":"","description":"Numeric ID of release"},{"displayName":"Language","name":"language","type":"string","default":"","description":"Language code to publish the story individually (must be enabled in the space settings)"}]},{"displayName":"Space Name or ID","name":"space","type":"options","typeOptions":{"loadOptionsMethod":"getSpaces"},"default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["unpublish"]}},"description":"The name of the space. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Story ID","name":"storyId","type":"string","default":"","required":true,"displayOptions":{"show":{"source":["managementApi"],"resource":["story"],"operation":["unpublish"]}},"description":"Numeric ID of the story"}],"codex":{"categories":["Data & Storage","Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.storyblok/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/storyblok/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Storyblok/storyblok.svg"},
|
|
385
386
|
{"displayName":"Strapi","name":"n8n-nodes-base.strapi","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Strapi API","defaults":{"name":"Strapi"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"strapiApi","required":true,"testedBy":"strapiApiTest","displayOptions":{"show":{"authentication":["password"]}}},{"name":"strapiTokenApi","required":true,"displayOptions":{"show":{"authentication":["token"]}}}],"properties":[{"displayName":"Authentication","name":"authentication","type":"options","options":[{"name":"Username & Password","value":"password"},{"name":"API Token","value":"token"}],"default":"password"},{"displayName":"Resource","name":"resource","noDataExpression":true,"type":"options","options":[{"name":"Entry","value":"entry"}],"default":"entry"},{"displayName":"Operation","name":"operation","noDataExpression":true,"type":"options","displayOptions":{"show":{"resource":["entry"]}},"options":[{"name":"Create","value":"create","description":"Create an entry","action":"Create an entry"},{"name":"Delete","value":"delete","description":"Delete an entry","action":"Delete an entry"},{"name":"Get","value":"get","description":"Get an entry","action":"Get an entry"},{"name":"Get Many","value":"getAll","description":"Get many entries","action":"Get many entries"},{"name":"Update","value":"update","description":"Update an entry","action":"Update an entry"}],"default":"get"},{"displayName":"Content Type","name":"contentType","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["create"]}},"description":"Name of the content type"},{"displayName":"Columns","name":"columns","type":"string","displayOptions":{"show":{"resource":["entry"],"operation":["create"]}},"default":"","placeholder":"id,name,description","description":"Comma-separated list of the properties which should used as columns for the new rows"},{"displayName":"Content Type","name":"contentType","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["delete"]}},"description":"Name of the content type"},{"displayName":"Entry ID","name":"entryId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["delete"]}},"description":"The ID of the entry to delete"},{"displayName":"Content Type","name":"contentType","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["get"]}},"description":"Name of the content type"},{"displayName":"Entry ID","name":"entryId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["get"]}},"description":"The ID of the entry to get"},{"displayName":"Content Type","name":"contentType","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["getAll"]}},"description":"Name of the content type"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["entry"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["entry"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":50,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["entry"],"operation":["getAll"]}},"options":[{"displayName":"Publication State","name":"publicationState","type":"options","options":[{"name":"Live","value":"live"},{"name":"Preview","value":"preview"}],"default":"","description":"Only select entries matching the publication state provided"},{"displayName":"Sort Fields","name":"sort","type":"string","typeOptions":{"multipleValues":true,"multipleValueButtonText":"Add Sort Field"},"default":"","placeholder":"name:asc","description":"Name of the fields to sort the data by. By default will be sorted ascendingly. To modify that behavior, you have to add the sort direction after the name of sort field preceded by a colon. For example: <code>name:asc</code>."},{"displayName":"Where (JSON)","name":"where","type":"string","default":"","description":"JSON query to filter the data. <a href=\"https://strapi.io/documentation/developer-docs/latest/developer-resources/content-api/content-api.html#filters\">More info</a>."}]},{"displayName":"Content Type","name":"contentType","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["entry"],"operation":["update"]}},"description":"Name of the content type"},{"displayName":"Update Key","name":"updateKey","type":"string","displayOptions":{"show":{"resource":["entry"],"operation":["update"]}},"default":"id","required":true,"description":"Name of the property which decides which rows in the database should be updated. Normally that would be \"id\"."},{"displayName":"Columns","name":"columns","type":"string","displayOptions":{"show":{"resource":["entry"],"operation":["update"]}},"default":"","placeholder":"id,name,description","description":"Comma-separated list of the properties which should used as columns for the new rows"}],"codex":{"categories":["Data & Storage","Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.strapi/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/strapi/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Strapi/strapi.svg"},
|
|
386
387
|
{"displayName":"Strava","name":"n8n-nodes-base.strava","group":["input"],"version":[1,1.1],"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Strava API","defaults":{"name":"Strava"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"stravaOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Activity","value":"activity"}],"default":"activity"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["activity"]}},"options":[{"name":"Create","value":"create","description":"Create a new activity","action":"Create an activity"},{"name":"Get","value":"get","description":"Get an activity","action":"Get an activity"},{"name":"Get Comments","value":"getComments","description":"Get all activity comments","action":"Get all activity comments"},{"name":"Get Kudos","value":"getKudos","description":"Get all activity kudos","action":"Get all activity kudos"},{"name":"Get Laps","value":"getLaps","description":"Get all activity laps","action":"Get all activity laps"},{"name":"Get Many","value":"getAll","description":"Get many activities","action":"Get many activities"},{"name":"Get Streams","value":"getStreams","description":"Get activity streams","action":"Get all activity streams"},{"name":"Get Zones","value":"getZones","description":"Get all activity zones","action":"Get all activity zones"},{"name":"Update","value":"update","description":"Update an activity","action":"Update an activity"}],"default":"create"},{"displayName":"Name","name":"name","type":"string","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["create"]}},"default":"","description":"The name of the activity"},{"displayName":"Type","name":"type","type":"string","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["create"],"@version":[1]}},"default":"","description":"Type of activity. For example - Run, Ride etc."},{"displayName":"Sport Type","name":"sport_type","type":"options","options":[{"name":"Alpine Ski","value":"AlpineSki"},{"name":"Backcountry Ski","value":"BackcountrySki"},{"name":"Badminton","value":"Badminton"},{"name":"Canoeing","value":"Canoeing"},{"name":"Crossfit","value":"Crossfit"},{"name":"EBike Ride","value":"EBikeRide"},{"name":"Elliptical","value":"Elliptical"},{"name":"EMountain Bike Ride","value":"EMountainBikeRide"},{"name":"Golf","value":"Golf"},{"name":"Gravel Ride","value":"GravelRide"},{"name":"Handcycle","value":"Handcycle"},{"name":"HIIT","value":"HighIntensityIntervalTraining"},{"name":"Hike","value":"Hike"},{"name":"Ice Skate","value":"IceSkate"},{"name":"Inline Skate","value":"InlineSkate"},{"name":"Kayaking","value":"Kayaking"},{"name":"Kitesurf","value":"Kitesurf"},{"name":"Mountain Bike Ride","value":"MountainBikeRide"},{"name":"Nordic Ski","value":"NordicSki"},{"name":"Pickleball","value":"Pickleball"},{"name":"Pilates","value":"Pilates"},{"name":"Racquetball","value":"Racquetball"},{"name":"Ride","value":"Ride"},{"name":"Rock Climbing","value":"RockClimbing"},{"name":"Roller Ski","value":"RollerSki"},{"name":"Rowing","value":"Rowing"},{"name":"Run","value":"Run"},{"name":"Sail","value":"Sail"},{"name":"Skateboard","value":"Skateboard"},{"name":"Snowboard","value":"Snowboard"},{"name":"Snowshoe","value":"Snowshoe"},{"name":"Soccer","value":"Soccer"},{"name":"Squash","value":"Squash"},{"name":"Stair Stepper","value":"StairStepper"},{"name":"Stand Up Paddling","value":"StandUpPaddling"},{"name":"Surfing","value":"Surfing"},{"name":"Swim","value":"Swim"},{"name":"Table Tennis","value":"TableTennis"},{"name":"Tennis","value":"Tennis"},{"name":"Trail Run","value":"TrailRun"},{"name":"Velomobile","value":"Velomobile"},{"name":"Virtual Ride","value":"VirtualRide"},{"name":"Virtual Row","value":"VirtualRow"},{"name":"Virtual Run","value":"VirtualRun"},{"name":"Walk","value":"Walk"},{"name":"Weight Training","value":"WeightTraining"},{"name":"Wheelchair","value":"Wheelchair"},{"name":"Windsurf","value":"Windsurf"},{"name":"Workout","value":"Workout"},{"name":"Yoga","value":"Yoga"}],"default":"Run","description":"Type of sport","displayOptions":{"show":{"resource":["activity"],"operation":["create"]},"hide":{"@version":[1]}}},{"displayName":"Start Date","name":"startDate","type":"dateTime","default":"","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["create"]}},"description":"ISO 8601 formatted date time"},{"displayName":"Elapsed Time (Seconds)","name":"elapsedTime","type":"number","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["create"]}},"typeOptions":{"minValue":0},"default":0,"description":"In seconds"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["activity"],"operation":["create"]}},"options":[{"displayName":"Commute","name":"commute","type":"boolean","default":false,"description":"Whether to mark as commute"},{"displayName":"Description","name":"description","type":"string","default":"","description":"Description of the activity"},{"displayName":"Distance","name":"distance","type":"number","typeOptions":{"minValue":0},"default":0,"description":"In meters"},{"displayName":"Trainer","name":"trainer","type":"boolean","default":false,"description":"Whether to mark as a trainer activity"}]},{"displayName":"Activity ID","name":"activityId","type":"string","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["update"]}},"default":"","description":"ID or email of activity"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["activity"],"operation":["update"]}},"options":[{"displayName":"Commute","name":"commute","type":"boolean","default":false,"description":"Whether to mark as commute"},{"displayName":"Description","name":"description","type":"string","default":"","description":"Description of the activity"},{"displayName":"Gear ID","name":"gear_id","type":"string","default":"","description":"Identifier for the gear associated with the activity. ‘none’ clears gear from activity."},{"displayName":"Mute Activity","name":"hide_from_home","type":"boolean","default":false,"description":"Do not publish to Home or Club feeds"},{"displayName":"Name","name":"name","type":"string","default":"","description":"The name of the activity"},{"displayName":"Type","name":"type","type":"string","default":"","description":"Type of activity. For example - Run, Ride etc.","displayOptions":{"show":{"@version":[1]}}},{"displayName":"Sport Type","name":"sport_type","type":"options","options":[{"name":"Alpine Ski","value":"AlpineSki"},{"name":"Backcountry Ski","value":"BackcountrySki"},{"name":"Badminton","value":"Badminton"},{"name":"Canoeing","value":"Canoeing"},{"name":"Crossfit","value":"Crossfit"},{"name":"EBike Ride","value":"EBikeRide"},{"name":"Elliptical","value":"Elliptical"},{"name":"EMountain Bike Ride","value":"EMountainBikeRide"},{"name":"Golf","value":"Golf"},{"name":"Gravel Ride","value":"GravelRide"},{"name":"Handcycle","value":"Handcycle"},{"name":"HIIT","value":"HighIntensityIntervalTraining"},{"name":"Hike","value":"Hike"},{"name":"Ice Skate","value":"IceSkate"},{"name":"Inline Skate","value":"InlineSkate"},{"name":"Kayaking","value":"Kayaking"},{"name":"Kitesurf","value":"Kitesurf"},{"name":"Mountain Bike Ride","value":"MountainBikeRide"},{"name":"Nordic Ski","value":"NordicSki"},{"name":"Pickleball","value":"Pickleball"},{"name":"Pilates","value":"Pilates"},{"name":"Racquetball","value":"Racquetball"},{"name":"Ride","value":"Ride"},{"name":"Rock Climbing","value":"RockClimbing"},{"name":"Roller Ski","value":"RollerSki"},{"name":"Rowing","value":"Rowing"},{"name":"Run","value":"Run"},{"name":"Sail","value":"Sail"},{"name":"Skateboard","value":"Skateboard"},{"name":"Snowboard","value":"Snowboard"},{"name":"Snowshoe","value":"Snowshoe"},{"name":"Soccer","value":"Soccer"},{"name":"Squash","value":"Squash"},{"name":"Stair Stepper","value":"StairStepper"},{"name":"Stand Up Paddling","value":"StandUpPaddling"},{"name":"Surfing","value":"Surfing"},{"name":"Swim","value":"Swim"},{"name":"Table Tennis","value":"TableTennis"},{"name":"Tennis","value":"Tennis"},{"name":"Trail Run","value":"TrailRun"},{"name":"Velomobile","value":"Velomobile"},{"name":"Virtual Ride","value":"VirtualRide"},{"name":"Virtual Row","value":"VirtualRow"},{"name":"Virtual Run","value":"VirtualRun"},{"name":"Walk","value":"Walk"},{"name":"Weight Training","value":"WeightTraining"},{"name":"Wheelchair","value":"Wheelchair"},{"name":"Windsurf","value":"Windsurf"},{"name":"Workout","value":"Workout"},{"name":"Yoga","value":"Yoga"}],"default":"Run","description":"Type of sport","displayOptions":{"hide":{"@version":[1]}}},{"displayName":"Trainer","name":"trainer","type":"boolean","default":false,"description":"Whether to mark as a trainer activity"}]},{"displayName":"Activity ID","name":"activityId","type":"string","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["get"]}},"default":"","description":"ID or email of activity"},{"displayName":"Activity ID","name":"activityId","type":"string","required":true,"displayOptions":{"show":{"resource":["activity"],"operation":["getComments","getLaps","getKudos","getZones","getStreams"]}},"default":"","description":"ID or email of activity"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["activity"],"operation":["getComments","getLaps","getKudos","getZones"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["activity"],"operation":["getComments","getLaps","getKudos","getZones"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":50,"description":"Max number of results to return"},{"displayName":"Keys","name":"keys","type":"multiOptions","options":[{"name":"Altitude","value":"altitude"},{"name":"Cadence","value":"cadence"},{"name":"Distance","value":"distance"},{"name":"Gradient","value":"grade_smooth"},{"name":"Heartrate","value":"heartrate"},{"name":"Latitude / Longitude","value":"latlng"},{"name":"Moving","value":"moving"},{"name":"Temperature","value":"temp"},{"name":"Time","value":"time"},{"name":"Velocity","value":"velocity_smooth"},{"name":"Watts","value":"watts"}],"displayOptions":{"show":{"resource":["activity"],"operation":["getStreams"]}},"required":true,"default":[],"description":"Desired stream types to return"},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["activity"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["activity"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":50,"description":"Max number of results to return"}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.strava/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/strava/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Strava/strava.svg"},
|
|
387
|
-
{"displayName":"Strava Trigger","name":"n8n-nodes-base.stravaTrigger","group":["trigger"],"version":1,"description":"Starts the workflow when Strava events occur","defaults":{"name":"Strava Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"stravaOAuth2Api","required":true}],"webhooks":[{"name":"setup","httpMethod":"GET","responseMode":"onReceived","path":"webhook"},{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Object","name":"object","type":"options","options":[{"name":"[All]","value":"*"},{"name":"Activity","value":"activity"},{"name":"Athlete","value":"athlete"}],"default":"*"},{"displayName":"Event","name":"event","type":"options","options":[{"name":"[All]","value":"*"},{"name":"Created","value":"create"},{"name":"Deleted","value":"delete"},{"name":"Updated","value":"update"}],"default":"*"},{"displayName":"Resolve Data","name":"resolveData","type":"boolean","default":true,"description":"By default the webhook-data only contain the Object ID. If this option gets activated, it will resolve the data automatically."},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Delete If Exist","name":"deleteIfExist","type":"boolean","default":false,"description":"Strava allows just one subscription at all times. If you want to delete the current subscription to make room for a new
|
|
388
|
+
{"displayName":"Strava Trigger","name":"n8n-nodes-base.stravaTrigger","group":["trigger"],"version":1,"description":"Starts the workflow when Strava events occur","defaults":{"name":"Strava Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"stravaOAuth2Api","required":true}],"webhooks":[{"name":"setup","httpMethod":"GET","responseMode":"onReceived","path":"webhook"},{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Object","name":"object","type":"options","options":[{"name":"[All]","value":"*"},{"name":"Activity","value":"activity"},{"name":"Athlete","value":"athlete"}],"default":"*"},{"displayName":"Event","name":"event","type":"options","options":[{"name":"[All]","value":"*"},{"name":"Created","value":"create"},{"name":"Deleted","value":"delete"},{"name":"Updated","value":"update"}],"default":"*"},{"displayName":"Resolve Data","name":"resolveData","type":"boolean","default":true,"description":"By default the webhook-data only contain the Object ID. If this option gets activated, it will resolve the data automatically."},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Delete If Exist","name":"deleteIfExist","type":"boolean","default":false,"description":"Strava allows just one subscription at all times. If you want to delete the current subscription to make room for a new subscription with the current parameters, set this parameter to true. Keep in mind this is a destructive operation."}]}],"codex":{"categories":["Productivity"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.stravatrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/strava/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Strava/strava.svg"},
|
|
388
389
|
{"displayName":"Stripe","name":"n8n-nodes-base.stripe","group":["transform"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume the Stripe API","defaults":{"name":"Stripe"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"stripeApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Balance","value":"balance"},{"name":"Charge","value":"charge"},{"name":"Coupon","value":"coupon"},{"name":"Customer","value":"customer"},{"name":"Customer Card","value":"customerCard"},{"name":"Source","value":"source"},{"name":"Token","value":"token"}],"default":"balance"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Get","value":"get","description":"Get a balance","action":"Get a balance"}],"displayOptions":{"show":{"resource":["balance"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Add","value":"add","description":"Add a customer card","action":"Add a customer card"},{"name":"Get","value":"get","description":"Get a customer card","action":"Get a customer card"},{"name":"Remove","value":"remove","description":"Remove a customer card","action":"Remove a customer card"}],"displayOptions":{"show":{"resource":["customerCard"]}}},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer to be associated with this card","displayOptions":{"show":{"resource":["customerCard"],"operation":["add"]}}},{"displayName":"Card Token","name":"token","type":"string","typeOptions":{"password":true},"required":true,"default":"","placeholder":"tok_1IMfKdJhRTnqS5TKQVG1LI9o","description":"Token representing sensitive card information","displayOptions":{"show":{"resource":["customerCard"],"operation":["add"]}}},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer whose card to remove","displayOptions":{"show":{"resource":["customerCard"],"operation":["remove"]}}},{"displayName":"Card ID","name":"cardId","type":"string","required":true,"default":"","description":"ID of the card to remove","displayOptions":{"show":{"resource":["customerCard"],"operation":["remove"]}}},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer whose card to retrieve","displayOptions":{"show":{"resource":["customerCard"],"operation":["get"]}}},{"displayName":"Source ID","name":"sourceId","type":"string","required":true,"default":"","description":"ID of the source to retrieve","displayOptions":{"show":{"resource":["customerCard"],"operation":["get"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Create","value":"create","description":"Create a charge","action":"Create a charge"},{"name":"Get","value":"get","description":"Get a charge","action":"Get a charge"},{"name":"Get Many","value":"getAll","description":"Get many charges","action":"Get many charges"},{"name":"Update","value":"update","description":"Update a charge","action":"Update a charge"}],"displayOptions":{"show":{"resource":["charge"]}}},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer to be associated with this charge","displayOptions":{"show":{"resource":["charge"],"operation":["create"]}}},{"displayName":"Amount","name":"amount","type":"number","required":true,"default":0,"description":"Amount in cents to be collected for this charge, e.g. enter <code>100</code> for $1.00","typeOptions":{"minValue":0,"maxValue":99999999},"displayOptions":{"show":{"resource":["charge"],"operation":["create"]}}},{"displayName":"Currency Name or ID","name":"currency","type":"options","typeOptions":{"loadOptionsMethod":"getCurrencies"},"required":true,"default":"","description":"Three-letter ISO currency code, e.g. <code>USD</code> or <code>EUR</code>. It must be a <a href=\"https://stripe.com/docs/currencies\">Stripe-supported currency</a>. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["charge"],"operation":["create"]}}},{"displayName":"Source ID","name":"source","type":"string","required":true,"default":"","description":"ID of the customer's payment source to be charged","displayOptions":{"show":{"resource":["charge"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["charge"],"operation":["create"]}},"options":[{"displayName":"Description","name":"description","type":"string","default":"","description":"Arbitrary text to describe the charge to create"},{"displayName":"Metadata","name":"metadata","type":"fixedCollection","default":[],"placeholder":"Add Metadata Item","description":"Set of key-value pairs to attach to the charge to create","typeOptions":{"multipleValues":true},"options":[{"displayName":"Metadata Properties","name":"metadataProperties","values":[{"displayName":"Key","name":"key","type":"string","default":""},{"displayName":"Value","name":"value","type":"string","default":""}]}]},{"displayName":"Receipt Email","name":"receipt_email","type":"string","default":"","description":"Email address to which the receipt for this charge will be sent"},{"displayName":"Shipping","name":"shipping","type":"fixedCollection","description":"Shipping information for the charge","placeholder":"Add Field","typeOptions":{"multipleValues":true},"default":[],"options":[{"displayName":"Shipping Properties","name":"shippingProperties","values":[{"displayName":"Recipient Name","name":"name","type":"string","description":"Name of the person who will receive the shipment","default":""},{"displayName":"Address","name":"address","type":"fixedCollection","default":{},"placeholder":"Add Field","options":[{"displayName":"Details","name":"details","values":[{"displayName":"Line 1","name":"line1","description":"Address line 1 (e.g. street, PO Box, or company name)","type":"string","default":""},{"displayName":"Line 2","name":"line2","description":"Address line 2 (e.g. apartment, suite, unit, or building)","type":"string","default":""},{"displayName":"City","name":"city","description":"City, district, suburb, town, or village","type":"string","default":""},{"displayName":"State","name":"state","description":"State, county, province, or region","type":"string","default":""},{"displayName":"Country","name":"country","description":"Two-letter country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2</a>)","type":"string","default":""},{"displayName":"Postal Code","name":"postal_code","description":"ZIP or postal code","type":"string","default":""}]}]}]}]}]},{"displayName":"Charge ID","name":"chargeId","type":"string","required":true,"default":"","description":"ID of the charge to retrieve","displayOptions":{"show":{"resource":["charge"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["charge"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":50,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["charge"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Charge ID","name":"chargeId","type":"string","required":true,"default":"","description":"ID of the charge to update","displayOptions":{"show":{"resource":["charge"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["charge"],"operation":["update"]}},"options":[{"displayName":"Description","name":"description","type":"string","default":"","description":"Arbitrary text to describe the charge to update"},{"displayName":"Metadata","name":"metadata","type":"fixedCollection","default":{},"placeholder":"Add Metadata Item","description":"Set of key-value pairs to attach to the charge to update","typeOptions":{"multipleValues":true},"options":[{"displayName":"Metadata Properties","name":"metadataProperties","values":[{"displayName":"Key","name":"key","type":"string","default":""},{"displayName":"Value","name":"value","type":"string","default":""}]}]},{"displayName":"Receipt Email","name":"receipt_email","type":"string","default":"","description":"The email address to which the receipt for this charge will be sent"},{"displayName":"Shipping","name":"shipping","type":"fixedCollection","default":{},"description":"Shipping information for the charge","placeholder":"Add Field","typeOptions":{"multipleValues":true},"options":[{"displayName":"Shipping Properties","name":"shippingProperties","default":{},"values":[{"displayName":"Recipient Name","name":"name","type":"string","default":""},{"displayName":"Recipient Address","name":"address","type":"fixedCollection","default":{},"placeholder":"Add Address Details","options":[{"displayName":"Details","name":"details","values":[{"displayName":"Line 1","name":"line1","description":"Address line 1 (e.g. street, PO Box, or company name)","type":"string","default":""},{"displayName":"Line 2","name":"line2","description":"Address line 2 (e.g. apartment, suite, unit, or building)","type":"string","default":""},{"displayName":"City","name":"city","description":"City, district, suburb, town, or village","type":"string","default":""},{"displayName":"State","name":"state","description":"State, county, province, or region","type":"string","default":""},{"displayName":"Country","name":"country","description":"Two-letter country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2</a>)","type":"string","default":""},{"displayName":"Postal Code","name":"postal_code","description":"ZIP or postal code","type":"string","default":""}]}]}]}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"create","options":[{"name":"Create","value":"create","description":"Create a coupon","action":"Create a coupon"},{"name":"Get Many","value":"getAll","description":"Get many coupons","action":"Get many coupons"}],"displayOptions":{"show":{"resource":["coupon"]}}},{"displayName":"Apply","name":"duration","type":"options","required":true,"default":"once","description":"How long the discount will be in effect","options":[{"name":"Forever","value":"forever"},{"name":"Once","value":"once"}],"displayOptions":{"show":{"resource":["coupon"],"operation":["create"]}}},{"displayName":"Discount Type","name":"type","type":"options","required":true,"default":"percent","description":"Whether the coupon discount is a percentage or a fixed amount","options":[{"name":"Fixed Amount (in Cents)","value":"fixedAmount"},{"name":"Percent","value":"percent"}],"displayOptions":{"show":{"resource":["coupon"],"operation":["create"]}}},{"displayName":"Amount Off","name":"amountOff","type":"number","required":true,"default":0,"description":"Amount in cents to subtract from an invoice total, e.g. enter <code>100</code> for $1.00","typeOptions":{"minValue":0,"maxValue":99999999},"displayOptions":{"show":{"resource":["coupon"],"operation":["create"],"type":["fixedAmount"]}}},{"displayName":"Currency Name or ID","name":"currency","type":"options","typeOptions":{"loadOptionsMethod":"getCurrencies"},"required":true,"default":"","description":"Three-letter ISO currency code, e.g. <code>USD</code> or <code>EUR</code>. It must be a <a href=\"https://stripe.com/docs/currencies\">Stripe-supported currency</a>. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["coupon"],"operation":["create"],"type":["fixedAmount"]}}},{"displayName":"Percent Off","name":"percentOff","type":"number","required":true,"default":1,"description":"Percentage to apply with the coupon","typeOptions":{"minValue":1,"maxValue":100},"displayOptions":{"show":{"resource":["coupon"],"operation":["create"],"type":["percent"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["coupon"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":50,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["coupon"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Create","value":"create","description":"Create a customer","action":"Create a customer"},{"name":"Delete","value":"delete","description":"Delete a customer","action":"Delete a customer"},{"name":"Get","value":"get","description":"Get a customer","action":"Get a customer"},{"name":"Get Many","value":"getAll","description":"Get many customers","action":"Get many customers"},{"name":"Update","value":"update","description":"Update a customer","action":"Update a customer"}],"displayOptions":{"show":{"resource":["customer"]}}},{"displayName":"Name","name":"name","type":"string","required":true,"default":"","description":"Full name or business name of the customer to create","displayOptions":{"show":{"resource":["customer"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["customer"],"operation":["create"]}},"options":[{"displayName":"Address","name":"address","type":"fixedCollection","description":"Address of the customer to create","placeholder":"Add Field","default":{},"options":[{"displayName":"Details","name":"details","values":[{"displayName":"Line 1","name":"line1","description":"Address line 1 (e.g. street, PO Box, or company name)","type":"string","default":""},{"displayName":"Line 2","name":"line2","description":"Address line 2 (e.g. apartment, suite, unit, or building)","type":"string","default":""},{"displayName":"City","name":"city","description":"City, district, suburb, town, or village","type":"string","default":""},{"displayName":"State","name":"state","description":"State, county, province, or region","type":"string","default":""},{"displayName":"Country","name":"country","description":"Two-letter country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2</a>)","type":"string","default":""},{"displayName":"Postal Code","name":"postal_code","description":"ZIP or postal code","type":"string","default":""}]}]},{"displayName":"Description","name":"description","type":"string","default":"","description":"Arbitrary text to describe the customer to create"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the customer to create"},{"displayName":"Metadata","name":"metadata","type":"fixedCollection","default":{},"placeholder":"Add Metadata Item","description":"Set of key-value pairs to attach to the customer to create","typeOptions":{"multipleValues":true},"options":[{"displayName":"Metadata Properties","name":"metadataProperties","values":[{"displayName":"Key","name":"key","type":"string","default":""},{"displayName":"Value","name":"value","type":"string","default":""}]}]},{"displayName":"Phone","name":"phone","type":"string","default":"","description":"Telephone number of the customer to create"},{"displayName":"Shipping","name":"shipping","type":"fixedCollection","default":{},"description":"Shipping information for the customer","typeOptions":{"multipleValues":true},"placeholder":"Add Field","options":[{"displayName":"Shipping Properties","name":"shippingProperties","values":[{"displayName":"Recipient Name","name":"name","type":"string","default":""},{"displayName":"Recipient Address","name":"address","type":"fixedCollection","default":{},"placeholder":"Add Address Details","options":[{"displayName":"Details","name":"details","values":[{"displayName":"Line 1","name":"line1","description":"Address line 1 (e.g. street, PO Box, or company name)","type":"string","default":""},{"displayName":"Line 2","name":"line2","description":"Address line 2 (e.g. apartment, suite, unit, or building)","type":"string","default":""},{"displayName":"City","name":"city","description":"City, district, suburb, town, or village","type":"string","default":""},{"displayName":"State","name":"state","description":"State, county, province, or region","type":"string","default":""},{"displayName":"Country","name":"country","description":"Two-letter country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2</a>)","type":"string","default":""},{"displayName":"Postal Code","name":"postal_code","description":"ZIP or postal code","type":"string","default":""}]}]},{"displayName":"Recipient Phone","name":"phone","type":"string","default":""}]}]}]},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer to delete","displayOptions":{"show":{"resource":["customer"],"operation":["delete"]}}},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer to retrieve","displayOptions":{"show":{"resource":["customer"],"operation":["get"]}}},{"displayName":"Return All","name":"returnAll","type":"boolean","default":false,"description":"Whether to return all results or only up to a given limit","displayOptions":{"show":{"resource":["customer"],"operation":["getAll"]}}},{"displayName":"Limit","name":"limit","type":"number","default":50,"description":"Max number of results to return","typeOptions":{"minValue":1,"maxValue":1000},"displayOptions":{"show":{"resource":["customer"],"operation":["getAll"],"returnAll":[false]}}},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"displayOptions":{"show":{"resource":["customer"],"operation":["getAll"]}},"options":[{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Customer's email to filter by"}]},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer to update","displayOptions":{"show":{"resource":["customer"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["customer"],"operation":["update"]}},"options":[{"displayName":"Address","name":"address","type":"fixedCollection","description":"Address of the customer to update","placeholder":"Add Field","default":{},"options":[{"displayName":"Details","name":"details","values":[{"displayName":"Line 1","name":"line1","description":"Address line 1 (e.g. street, PO Box, or company name)","type":"string","default":""},{"displayName":"Line 2","name":"line2","description":"Address line 2 (e.g. apartment, suite, unit, or building)","type":"string","default":""},{"displayName":"City","name":"city","description":"City, district, suburb, town, or village","type":"string","default":""},{"displayName":"State","name":"state","description":"State, county, province, or region","type":"string","default":""},{"displayName":"Country","name":"country","description":"Two-letter country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2</a>)","type":"string","default":""},{"displayName":"Postal Code","name":"postal_code","description":"ZIP or postal code","type":"string","default":""}]}]},{"displayName":"Description","name":"description","type":"string","default":"","description":"Arbitrary text to describe the customer to create"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"Email of the customer to create"},{"displayName":"Metadata","name":"metadata","type":"fixedCollection","default":{},"placeholder":"Add Metadata Item","description":"Set of key-value pairs to attach to the customer to create","typeOptions":{"multipleValues":true},"options":[{"displayName":"Metadata Properties","name":"metadataProperties","values":[{"displayName":"Key","name":"key","type":"string","default":""},{"displayName":"Value","name":"value","type":"string","default":""}]}]},{"displayName":"Name","name":"name","type":"string","default":"","description":"Full name or business name of the customer to create"},{"displayName":"Phone","name":"phone","type":"string","default":"","description":"Telephone number of this customer"},{"displayName":"Shipping","name":"shipping","type":"fixedCollection","description":"Shipping information for the customer","placeholder":"Add Field","typeOptions":{"multipleValues":true},"default":{},"options":[{"displayName":"Shipping Properties","name":"shippingProperties","values":[{"displayName":"Recipient Name","name":"name","type":"string","default":"","description":"Name of the person who will receive the shipment"},{"displayName":"Recipient Address","name":"address","type":"fixedCollection","default":{},"placeholder":"Add Address Details","options":[{"displayName":"Details","name":"details","values":[{"displayName":"Line 1","name":"line1","description":"Address line 1 (e.g. street, PO Box, or company name)","type":"string","default":""},{"displayName":"Line 2","name":"line2","description":"Address line 2 (e.g. apartment, suite, unit, or building)","type":"string","default":""},{"displayName":"City","name":"city","description":"City, district, suburb, town, or village","type":"string","default":""},{"displayName":"State","name":"state","description":"State, county, province, or region","type":"string","default":""},{"displayName":"Country","name":"country","description":"Two-letter country code (<a href=\"https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2\">ISO 3166-1 alpha-2</a>)","type":"string","default":""},{"displayName":"Postal Code","name":"postal_code","description":"ZIP or postal code","type":"string","default":""}]}]},{"displayName":"Recipient Phone","name":"phone","type":"string","default":"","description":"Phone number of the person who will receive the shipment"}]}]}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"get","options":[{"name":"Create","value":"create","description":"Create a source","action":"Create a source"},{"name":"Delete","value":"delete","description":"Delete a source","action":"Delete a source"},{"name":"Get","value":"get","description":"Get a source","action":"Get a source"}],"displayOptions":{"show":{"resource":["source"]}}},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer to attach the source to","displayOptions":{"show":{"resource":["source"],"operation":["create"]}}},{"displayName":"Type","name":"type","type":"options","required":true,"default":"wechat","description":"Type of source (payment instrument) to create","options":[{"name":"WeChat","value":"wechat"}],"displayOptions":{"show":{"resource":["source"],"operation":["create"]}}},{"displayName":"Amount","name":"amount","type":"number","default":0,"description":"Amount in cents to be collected for this charge, e.g. enter <code>100</code> for $1.00","typeOptions":{"minValue":0,"maxValue":99999999},"displayOptions":{"show":{"resource":["source"],"operation":["create"]}}},{"displayName":"Currency Name or ID","name":"currency","type":"options","typeOptions":{"loadOptionsMethod":"getCurrencies"},"default":"","description":"Three-letter ISO currency code, e.g. <code>USD</code> or <code>EUR</code>. It must be a <a href=\"https://stripe.com/docs/currencies\">Stripe-supported currency</a>. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.","displayOptions":{"show":{"resource":["source"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["source"],"operation":["create"]}},"options":[{"displayName":"Metadata","name":"metadata","type":"fixedCollection","placeholder":"Add Metadata Item","description":"Set of key-value pairs to attach to the source to create","default":{},"typeOptions":{"multipleValues":true},"options":[{"displayName":"Metadata Properties","name":"metadataProperties","values":[{"displayName":"Key","name":"key","type":"string","default":""},{"displayName":"Value","name":"value","type":"string","default":""}]}]},{"displayName":"Statement Descriptor","name":"statement_descriptor","type":"string","default":"","description":"Arbitrary text to display on the customer's statement"}]},{"displayName":"Customer ID","name":"customerId","type":"string","required":true,"default":"","description":"ID of the customer whose source to delete","displayOptions":{"show":{"resource":["source"],"operation":["delete"]}}},{"displayName":"Source ID","name":"sourceId","type":"string","required":true,"default":"","description":"ID of the source to delete","displayOptions":{"show":{"resource":["source"],"operation":["delete"]}}},{"displayName":"Source ID","name":"sourceId","type":"string","required":true,"default":"","description":"ID of the source to retrieve","displayOptions":{"show":{"resource":["source"],"operation":["get"]}}},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"default":"create","options":[{"name":"Create","value":"create","description":"Create a token","action":"Create a token"}],"displayOptions":{"show":{"resource":["token"]}}},{"displayName":"Type","name":"type","type":"options","required":true,"default":"cardToken","description":"Type of token to create","options":[{"name":"Card Token","value":"cardToken"}],"displayOptions":{"show":{"resource":["token"],"operation":["create"]}}},{"displayName":"Card Number","name":"number","type":"string","displayOptions":{"show":{"resource":["token"],"operation":["create"],"type":["cardToken"]}},"placeholder":"4242424242424242","default":""},{"displayName":"CVC","name":"cvc","type":"string","displayOptions":{"show":{"resource":["token"],"operation":["create"],"type":["cardToken"]}},"default":"","placeholder":"314","description":"Security code printed on the back of the card"},{"displayName":"Expiration Month","description":"Number of the month when the card will expire","name":"expirationMonth","type":"string","displayOptions":{"show":{"resource":["token"],"operation":["create"],"type":["cardToken"]}},"default":"","placeholder":"10"},{"displayName":"Expiration Year","description":"Year when the card will expire","name":"expirationYear","type":"string","displayOptions":{"show":{"resource":["token"],"operation":["create"],"type":["cardToken"]}},"default":"","placeholder":"2022"}],"codex":{"categories":["Finance & Accounting","Sales"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.stripe/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/stripe/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Stripe/stripe.svg"},
|
|
389
390
|
{"displayName":"Stripe Trigger","name":"n8n-nodes-base.stripeTrigger","group":["trigger"],"version":1,"description":"Handle Stripe events via webhooks","defaults":{"name":"Stripe Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"stripeApi","required":true}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Events","name":"events","type":"multiOptions","required":true,"default":[],"description":"The event to listen to","options":[{"name":"*","value":"*","description":"Any time any event is triggered (Wildcard Event)"},{"name":"Account Updated","value":"account.updated","description":"Occurs whenever an account status or property has changed"},{"name":"Account Application.authorized","value":"account.application.authorized","description":"Occurs whenever a user authorizes an application. Sent to the related application only."},{"name":"Account Application.deauthorized","value":"account.application.deauthorized","description":"Occurs whenever a user deauthorizes an application. Sent to the related application only."},{"name":"Account External_account.created","value":"account.external_account.created","description":"Occurs whenever an external account is created."},{"name":"Account External_account.deleted","value":"account.external_account.deleted","description":"Occurs whenever an external account is deleted."},{"name":"Account External_account.updated","value":"account.external_account.updated","description":"Occurs whenever an external account is updated."},{"name":"Application Fee.created","value":"application_fee.created","description":"Occurs whenever an application fee is created on a charge."},{"name":"Application Fee.refunded","value":"application_fee.refunded","description":"Occurs whenever an application fee is refunded, whether from refunding a charge or from refunding the application fee directly. This includes partial refunds."},{"name":"Application Fee.refund.updated","value":"application_fee.refund.updated","description":"Occurs whenever an application fee refund is updated."},{"name":"Balance Available","value":"balance.available","description":"Occurs whenever your Stripe balance has been updated (e.g., when a charge is available to be paid out). By default, Stripe automatically transfers funds in your balance to your bank account on a daily basis."},{"name":"Capability Updated","value":"capability.updated","description":"Occurs whenever a capability has new requirements or a new status."},{"name":"Charge Captured","value":"charge.captured","description":"Occurs whenever a previously uncaptured charge is captured."},{"name":"Charge Expired","value":"charge.expired","description":"Occurs whenever an uncaptured charge expires."},{"name":"Charge Failed","value":"charge.failed","description":"Occurs whenever a failed charge attempt occurs."},{"name":"Charge Pending","value":"charge.pending","description":"Occurs whenever a pending charge is created."},{"name":"Charge Refunded","value":"charge.refunded","description":"Occurs whenever a charge is refunded, including partial refunds."},{"name":"Charge Succeeded","value":"charge.succeeded","description":"Occurs whenever a new charge is created and is successful."},{"name":"Charge Updated","value":"charge.updated","description":"Occurs whenever a charge description or metadata is updated."},{"name":"Charge Dispute.closed","value":"charge.dispute.closed","description":"Occurs when a dispute is closed and the dispute status changes to lost, warning_closed, or won."},{"name":"Charge Dispute.created","value":"charge.dispute.created","description":"Occurs whenever a customer disputes a charge with their bank."},{"name":"Charge Dispute.funds_reinstated","value":"charge.dispute.funds_reinstated","description":"Occurs when funds are reinstated to your account after a dispute is closed. This includes partially refunded payments."},{"name":"Charge Dispute.funds_withdrawn","value":"charge.dispute.funds_withdrawn","description":"Occurs when funds are removed from your account due to a dispute."},{"name":"Charge Dispute.updated","value":"charge.dispute.updated","description":"Occurs when the dispute is updated (usually with evidence)."},{"name":"Charge Refund.updated","value":"charge.refund.updated","description":"Occurs whenever a refund is updated, on selected payment methods."},{"name":"Checkout Session.completed","value":"checkout.session.completed","description":"Occurs when a Checkout Session has been successfully completed."},{"name":"Coupon Created","value":"coupon.created","description":"Occurs whenever a coupon is created."},{"name":"Coupon Deleted","value":"coupon.deleted","description":"Occurs whenever a coupon is deleted."},{"name":"Coupon Updated","value":"coupon.updated","description":"Occurs whenever a coupon is updated."},{"name":"Credit Note.created","value":"credit_note.created","description":"Occurs whenever a credit note is created."},{"name":"Credit Note.updated","value":"credit_note.updated","description":"Occurs whenever a credit note is updated."},{"name":"Credit Note.voided","value":"credit_note.voided","description":"Occurs whenever a credit note is voided."},{"name":"Customer Created","value":"customer.created","description":"Occurs whenever a new customer is created."},{"name":"Customer Deleted","value":"customer.deleted","description":"Occurs whenever a customer is deleted."},{"name":"Customer Updated","value":"customer.updated","description":"Occurs whenever any property of a customer changes."},{"name":"Customer Discount.created","value":"customer.discount.created","description":"Occurs whenever a coupon is attached to a customer."},{"name":"Customer Discount.deleted","value":"customer.discount.deleted","description":"Occurs whenever a coupon is removed from a customer."},{"name":"Customer Discount.updated","value":"customer.discount.updated","description":"Occurs whenever a customer is switched from one coupon to another."},{"name":"Customer Source.created","value":"customer.source.created","description":"Occurs whenever a new source is created for a customer."},{"name":"Customer Source.deleted","value":"customer.source.deleted","description":"Occurs whenever a source is removed from a customer."},{"name":"Customer Source.expiring","value":"customer.source.expiring","description":"Occurs whenever a card or source will expire at the end of the month."},{"name":"Customer Source.updated","value":"customer.source.updated","description":"Occurs whenever a source's details are changed."},{"name":"Customer Subscription.created","value":"customer.subscription.created","description":"Occurs whenever a customer is signed up for a new plan."},{"name":"Customer Subscription.deleted","value":"customer.subscription.deleted","description":"Occurs whenever a customer's subscription ends."},{"name":"Customer Subscription.trial_will_end","value":"customer.subscription.trial_will_end","description":"Occurs three days before a subscription's trial period is scheduled to end, or when a trial is ended immediately (using trial_end=now)."},{"name":"Customer Subscription.updated","value":"customer.subscription.updated","description":"Occurs whenever a subscription changes (e.g., switching from one plan to another, or changing the status from trial to active)."},{"name":"Customer Tax_id.created","value":"customer.tax_id.created","description":"Occurs whenever a tax ID is created for a customer."},{"name":"Customer Tax_id.deleted","value":"customer.tax_id.deleted","description":"Occurs whenever a tax ID is deleted from a customer."},{"name":"Customer Tax_id.updated","value":"customer.tax_id.updated","description":"Occurs whenever a customer's tax ID is updated."},{"name":"File Created","value":"file.created","description":"Occurs whenever a new Stripe-generated file is available for your account."},{"name":"Invoice Created","value":"invoice.created","description":"Occurs whenever a new invoice is created. To learn how webhooks can be used with this event, and how they can affect it, see Using Webhooks with Subscriptions."},{"name":"Invoice Deleted","value":"invoice.deleted","description":"Occurs whenever a draft invoice is deleted."},{"name":"Invoice Finalized","value":"invoice.finalized","description":"Occurs whenever a draft invoice is finalized and updated to be an open invoice."},{"name":"Invoice Marked_uncollectible","value":"invoice.marked_uncollectible","description":"Occurs whenever an invoice is marked uncollectible."},{"name":"Invoice Payment_action_required","value":"invoice.payment_action_required","description":"Occurs whenever an invoice payment attempt requires further user action to complete."},{"name":"Invoice Payment_failed","value":"invoice.payment_failed","description":"Occurs whenever an invoice payment attempt fails, due either to a declined payment or to the lack of a stored payment method."},{"name":"Invoice Payment_succeeded","value":"invoice.payment_succeeded","description":"Occurs whenever an invoice payment attempt succeeds."},{"name":"Invoice Sent","value":"invoice.sent","description":"Occurs whenever an invoice email is sent out."},{"name":"Invoice Upcoming","value":"invoice.upcoming","description":"Occurs X number of days before a subscription is scheduled to create an invoice that is automatically charged—where X is determined by your subscriptions settings. Note: The received Invoice object will not have an invoice ID."},{"name":"Invoice Updated","value":"invoice.updated","description":"Occurs whenever an invoice changes (e.g., the invoice amount)."},{"name":"Invoice Voided","value":"invoice.voided","description":"Occurs whenever an invoice is voided."},{"name":"Invoiceitem Created","value":"invoiceitem.created","description":"Occurs whenever an invoice item is created."},{"name":"Invoiceitem Deleted","value":"invoiceitem.deleted","description":"Occurs whenever an invoice item is deleted."},{"name":"Invoiceitem Updated","value":"invoiceitem.updated","description":"Occurs whenever an invoice item is updated."},{"name":"Issuing Authorization.created","value":"issuing_authorization.created","description":"Occurs whenever an authorization is created."},{"name":"Issuing Authorization.request","value":"issuing_authorization.request","description":"Represents a synchronous request for authorization, see Using your integration to handle authorization requests."},{"name":"Issuing Authorization.updated","value":"issuing_authorization.updated","description":"Occurs whenever an authorization is updated."},{"name":"Issuing Card.created","value":"issuing_card.created","description":"Occurs whenever a card is created."},{"name":"Issuing Card.updated","value":"issuing_card.updated","description":"Occurs whenever a card is updated."},{"name":"Issuing Cardholder.created","value":"issuing_cardholder.created","description":"Occurs whenever a cardholder is created."},{"name":"Issuing Cardholder.updated","value":"issuing_cardholder.updated","description":"Occurs whenever a cardholder is updated."},{"name":"Issuing Dispute.created","value":"issuing_dispute.created","description":"Occurs whenever a dispute is created."},{"name":"Issuing Dispute.updated","value":"issuing_dispute.updated","description":"Occurs whenever a dispute is updated."},{"name":"Issuing Settlement.created","value":"issuing_settlement.created","description":"Occurs whenever an issuing settlement is created."},{"name":"Issuing Settlement.updated","value":"issuing_settlement.updated","description":"Occurs whenever an issuing settlement is updated."},{"name":"Issuing Transaction.created","value":"issuing_transaction.created","description":"Occurs whenever an issuing transaction is created."},{"name":"Issuing Transaction.updated","value":"issuing_transaction.updated","description":"Occurs whenever an issuing transaction is updated."},{"name":"Order Created","value":"order.created","description":"Occurs whenever an order is created."},{"name":"Order Payment_failed","value":"order.payment_failed","description":"Occurs whenever an order payment attempt fails."},{"name":"Order Payment_succeeded","value":"order.payment_succeeded","description":"Occurs whenever an order payment attempt succeeds."},{"name":"Order Updated","value":"order.updated","description":"Occurs whenever an order is updated."},{"name":"Order Return.created","value":"order_return.created","description":"Occurs whenever an order return is created."},{"name":"Payment Intent.amount_capturable_updated","value":"payment_intent.amount_capturable_updated","description":"Occurs when a PaymentIntent has funds to be captured. Check the amount_capturable property on the PaymentIntent to determine the amount that can be captured. You may capture the PaymentIntent with an amount_to_capture value up to the specified amount. Learn more about capturing PaymentIntents."},{"name":"Payment Intent.canceled","value":"payment_intent.canceled","description":"Occurs when a PaymentIntent is canceled."},{"name":"Payment Intent.created","value":"payment_intent.created","description":"Occurs when a new PaymentIntent is created."},{"name":"Payment Intent.payment_failed","value":"payment_intent.payment_failed","description":"Occurs when a PaymentIntent has failed the attempt to create a source or a payment."},{"name":"Payment Intent.succeeded","value":"payment_intent.succeeded","description":"Occurs when a PaymentIntent has been successfully fulfilled."},{"name":"Payment Intent.requires_action","value":"payment_intent.requires_action","description":"Occurs when a PaymentIntent requires an action."},{"name":"Payment Method.attached","value":"payment_method.attached","description":"Occurs whenever a new payment method is attached to a customer."},{"name":"Payment Method.card_automatically_updated","value":"payment_method.card_automatically_updated","description":"Occurs whenever a card payment method's details are automatically updated by the network."},{"name":"Payment Method.detached","value":"payment_method.detached","description":"Occurs whenever a payment method is detached from a customer."},{"name":"Payment Method.updated","value":"payment_method.updated","description":"Occurs whenever a payment method is updated via the PaymentMethod update API."},{"name":"Payout Canceled","value":"payout.canceled","description":"Occurs whenever a payout is canceled."},{"name":"Payout Created","value":"payout.created","description":"Occurs whenever a payout is created."},{"name":"Payout Failed","value":"payout.failed","description":"Occurs whenever a payout attempt fails."},{"name":"Payout Paid","value":"payout.paid","description":"Occurs whenever a payout is expected to be available in the destination account. If the payout fails, a payout.failed notification is also sent, at a later time."},{"name":"Payout Updated","value":"payout.updated","description":"Occurs whenever a payout is updated."},{"name":"Person Created","value":"person.created","description":"Occurs whenever a person associated with an account is created."},{"name":"Person Deleted","value":"person.deleted","description":"Occurs whenever a person associated with an account is deleted."},{"name":"Person Updated","value":"person.updated","description":"Occurs whenever a person associated with an account is updated."},{"name":"Plan Created","value":"plan.created","description":"Occurs whenever a plan is created."},{"name":"Plan Deleted","value":"plan.deleted","description":"Occurs whenever a plan is deleted."},{"name":"Plan Updated","value":"plan.updated","description":"Occurs whenever a plan is updated."},{"name":"Product Created","value":"product.created","description":"Occurs whenever a product is created."},{"name":"Product Deleted","value":"product.deleted","description":"Occurs whenever a product is deleted."},{"name":"Product Updated","value":"product.updated","description":"Occurs whenever a product is updated."},{"name":"Radar Early_fraud_warning.created","value":"radar.early_fraud_warning.created","description":"Occurs whenever an early fraud warning is created."},{"name":"Radar Early_fraud_warning.updated","value":"radar.early_fraud_warning.updated","description":"Occurs whenever an early fraud warning is updated."},{"name":"Recipient Created","value":"recipient.created","description":"Occurs whenever a recipient is created."},{"name":"Recipient Deleted","value":"recipient.deleted","description":"Occurs whenever a recipient is deleted."},{"name":"Recipient Updated","value":"recipient.updated","description":"Occurs whenever a recipient is updated."},{"name":"Reporting Report_run.failed","value":"reporting.report_run.failed","description":"Occurs whenever a requested **ReportRun** failed to complete."},{"name":"Reporting Report_run.succeeded","value":"reporting.report_run.succeeded","description":"Occurs whenever a requested **ReportRun** completed succesfully."},{"name":"Reporting Report_type.updated","value":"reporting.report_type.updated","description":"Occurs whenever a **ReportType** is updated (typically to indicate that a new day's data has come available)."},{"name":"Review Closed","value":"review.closed","description":"Occurs whenever a review is closed. The review's reason field indicates why: approved, disputed, refunded, or refunded_as_fraud."},{"name":"Review Opened","value":"review.opened","description":"Occurs whenever a review is opened."},{"name":"Setup Intent.canceled","value":"setup_intent.canceled","description":"Occurs when a SetupIntent is canceled."},{"name":"Setup Intent.created","value":"setup_intent.created","description":"Occurs when a new SetupIntent is created."},{"name":"Setup Intent.setup_failed","value":"setup_intent.setup_failed","description":"Occurs when a SetupIntent has failed the attempt to setup a payment method."},{"name":"Setup Intent.succeeded","value":"setup_intent.succeeded","description":"Occurs when an SetupIntent has successfully setup a payment method."},{"name":"Sigma Scheduled_query_run.created","value":"sigma.scheduled_query_run.created","description":"Occurs whenever a Sigma scheduled query run finishes."},{"name":"Sku Created","value":"sku.created","description":"Occurs whenever a SKU is created."},{"name":"Sku Deleted","value":"sku.deleted","description":"Occurs whenever a SKU is deleted."},{"name":"Sku Updated","value":"sku.updated","description":"Occurs whenever a SKU is updated."},{"name":"Source Canceled","value":"source.canceled","description":"Occurs whenever a source is canceled."},{"name":"Source Chargeable","value":"source.chargeable","description":"Occurs whenever a source transitions to chargeable."},{"name":"Source Failed","value":"source.failed","description":"Occurs whenever a source fails."},{"name":"Source Mandate_notification","value":"source.mandate_notification","description":"Occurs whenever a source mandate notification method is set to manual."},{"name":"Source Refund_attributes_required","value":"source.refund_attributes_required","description":"Occurs whenever the refund attributes are required on a receiver source to process a refund or a mispayment."},{"name":"Source Transaction.created","value":"source.transaction.created","description":"Occurs whenever a source transaction is created."},{"name":"Source Transaction.updated","value":"source.transaction.updated","description":"Occurs whenever a source transaction is updated."},{"name":"Subscription Schedule.aborted","value":"subscription_schedule.aborted","description":"Occurs whenever a subscription schedule is canceled due to the underlying subscription being canceled because of delinquency."},{"name":"Subscription Schedule.canceled","value":"subscription_schedule.canceled","description":"Occurs whenever a subscription schedule is canceled."},{"name":"Subscription Schedule.completed","value":"subscription_schedule.completed","description":"Occurs whenever a new subscription schedule is completed."},{"name":"Subscription Schedule.created","value":"subscription_schedule.created","description":"Occurs whenever a new subscription schedule is created."},{"name":"Subscription Schedule.expiring","value":"subscription_schedule.expiring","description":"Occurs 7 days before a subscription schedule will expire."},{"name":"Subscription Schedule.released","value":"subscription_schedule.released","description":"Occurs whenever a new subscription schedule is released."},{"name":"Subscription Schedule.updated","value":"subscription_schedule.updated","description":"Occurs whenever a subscription schedule is updated."},{"name":"Tax Rate.created","value":"tax_rate.created","description":"Occurs whenever a new tax rate is created."},{"name":"Tax Rate.updated","value":"tax_rate.updated","description":"Occurs whenever a tax rate is updated."},{"name":"Topup Canceled","value":"topup.canceled","description":"Occurs whenever a top-up is canceled."},{"name":"Topup Created","value":"topup.created","description":"Occurs whenever a top-up is created."},{"name":"Topup Failed","value":"topup.failed","description":"Occurs whenever a top-up fails."},{"name":"Topup Reversed","value":"topup.reversed","description":"Occurs whenever a top-up is reversed."},{"name":"Topup Succeeded","value":"topup.succeeded","description":"Occurs whenever a top-up succeeds."},{"name":"Transfer Created","value":"transfer.created","description":"Occurs whenever a transfer is created."},{"name":"Transfer Failed","value":"transfer.failed","description":"Occurs whenever a transfer failed."},{"name":"Transfer Paid","value":"transfer.paid","description":"Occurs after a transfer is paid. For Instant Payouts, the event will be sent on the next business day, although the funds should be received well beforehand."},{"name":"Transfer Reversed","value":"transfer.reversed","description":"Occurs whenever a transfer is reversed, including partial reversals."},{"name":"Transfer Updated","value":"transfer.updated","description":"Occurs whenever a transfer's description or metadata is updated."}]}],"codex":{"categories":["Finance & Accounting","Sales"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.stripetrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/stripe/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Stripe/stripe.svg"},
|
|
390
391
|
{"displayName":"Supabase","name":"n8n-nodes-base.supabase","group":["input"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Add, get, delete and update data in a table","defaults":{"name":"Supabase"},"inputs":["main"],"outputs":["main"],"usableAsTool":true,"credentials":[{"name":"supabaseApi","required":true,"testedBy":"supabaseApiCredentialTest"}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Row","value":"row"}],"default":"row"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["row"]}},"options":[{"name":"Create","value":"create","description":"Create a new row","action":"Create a row"},{"name":"Delete","value":"delete","description":"Delete a row","action":"Delete a row"},{"name":"Get","value":"get","description":"Get a row","action":"Get a row"},{"name":"Get Many","value":"getAll","description":"Get many rows","action":"Get many rows"},{"name":"Update","value":"update","description":"Update a row","action":"Update a row"}],"default":"create"},{"displayName":"Table Name or ID","name":"tableId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTables"},"required":true,"displayOptions":{"show":{"resource":["row"],"operation":["create","delete","get","getAll","update"]}},"default":""},{"displayName":"Select Type","name":"filterType","type":"options","options":[{"name":"Build Manually","value":"manual"},{"name":"String","value":"string"}],"displayOptions":{"show":{"resource":["row"],"operation":["update"]}},"default":"manual"},{"displayName":"Must Match","name":"matchType","type":"options","options":[{"name":"Any Select Condition","value":"anyFilter"},{"name":"All Select Conditions","value":"allFilters"}],"displayOptions":{"show":{"resource":["row"],"operation":["update"],"filterType":["manual"]}},"default":"anyFilter"},{"displayName":"Select Conditions","name":"filters","type":"fixedCollection","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["row"],"operation":["update"],"filterType":["manual"]}},"default":{},"placeholder":"Add Condition","options":[{"displayName":"Conditions","name":"conditions","values":[{"displayName":"Field Name or ID","name":"keyName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsDependsOn":["tableId"],"loadOptionsMethod":"getTableColumns"},"default":""},{"displayName":"Condition","name":"condition","type":"options","options":[{"name":"Equals","value":"eq"},{"name":"Full-Text","value":"fullText"},{"name":"Greater Than","value":"gt"},{"name":"Greater Than or Equal","value":"gte"},{"name":"ILIKE operator","value":"ilike","description":"Use * in place of %"},{"name":"Is","value":"is","description":"Checking for exact equality (null,true,false,unknown)"},{"name":"Less Than","value":"lt"},{"name":"Less Than or Equal","value":"lte"},{"name":"LIKE operator","value":"like","description":"Use * in place of %"},{"name":"Not Equals","value":"neq"}],"default":""},{"displayName":"Search Function","name":"searchFunction","type":"options","displayOptions":{"show":{"condition":["fullText"]}},"options":[{"name":"to_tsquery","value":"fts"},{"name":"plainto_tsquery","value":"plfts"},{"name":"phraseto_tsquery","value":"phfts"},{"name":"websearch_to_tsquery","value":"wfts"}],"default":""},{"displayName":"Field Value","name":"keyValue","type":"string","default":""}]}],"description":"Filter to decide which rows get updated"},{"displayName":"See <a href=\"https://postgrest.org/en/stable/references/api/tables_views.html#horizontal-filtering\" target=\"_blank\">PostgREST guide</a> to creating filters","name":"jsonNotice","type":"notice","displayOptions":{"show":{"resource":["row"],"operation":["update"],"filterType":["string"]}},"default":""},{"displayName":"Filters (String)","name":"filterString","type":"string","displayOptions":{"show":{"resource":["row"],"operation":["update"],"filterType":["string"]}},"default":"","placeholder":"name=eq.jhon"},{"displayName":"Data to Send","name":"dataToSend","type":"options","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":{"resource":["row"],"operation":["create","update"]}},"default":"defineBelow"},{"displayName":"Inputs to Ignore","name":"inputsToIgnore","type":"string","displayOptions":{"show":{"resource":["row"],"operation":["create","update"],"dataToSend":["autoMapInputData"]}},"default":"","description":"List of input properties to avoid sending, separated by commas. Leave empty to send all properties.","placeholder":"Enter properties..."},{"displayName":"Fields to Send","name":"fieldsUi","placeholder":"Add Field","type":"fixedCollection","typeOptions":{"multipleValueButtonText":"Add Field to Send","multipleValues":true},"displayOptions":{"show":{"resource":["row"],"operation":["create","update"],"dataToSend":["defineBelow"]}},"default":{},"options":[{"displayName":"Field","name":"fieldValues","values":[{"displayName":"Field Name or ID","name":"fieldId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsDependsOn":["tableId"],"loadOptionsMethod":"getTableColumns"},"default":""},{"displayName":"Field Value","name":"fieldValue","type":"string","default":""}]}]},{"displayName":"Select Type","name":"filterType","type":"options","options":[{"name":"Build Manually","value":"manual"},{"name":"String","value":"string"}],"displayOptions":{"show":{"resource":["row"],"operation":["delete"]}},"default":"manual"},{"displayName":"Must Match","name":"matchType","type":"options","options":[{"name":"Any Select Condition","value":"anyFilter"},{"name":"All Select Conditions","value":"allFilters"}],"displayOptions":{"show":{"resource":["row"],"operation":["delete"],"filterType":["manual"]}},"default":"anyFilter"},{"displayName":"Select Conditions","name":"filters","type":"fixedCollection","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["row"],"operation":["delete"],"filterType":["manual"]}},"default":{},"placeholder":"Add Condition","options":[{"displayName":"Conditions","name":"conditions","values":[{"displayName":"Field Name or ID","name":"keyName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsDependsOn":["tableId"],"loadOptionsMethod":"getTableColumns"},"default":""},{"displayName":"Condition","name":"condition","type":"options","options":[{"name":"Equals","value":"eq"},{"name":"Full-Text","value":"fullText"},{"name":"Greater Than","value":"gt"},{"name":"Greater Than or Equal","value":"gte"},{"name":"ILIKE operator","value":"ilike","description":"Use * in place of %"},{"name":"Is","value":"is","description":"Checking for exact equality (null,true,false,unknown)"},{"name":"Less Than","value":"lt"},{"name":"Less Than or Equal","value":"lte"},{"name":"LIKE operator","value":"like","description":"Use * in place of %"},{"name":"Not Equals","value":"neq"}],"default":""},{"displayName":"Search Function","name":"searchFunction","type":"options","displayOptions":{"show":{"condition":["fullText"]}},"options":[{"name":"to_tsquery","value":"fts"},{"name":"plainto_tsquery","value":"plfts"},{"name":"phraseto_tsquery","value":"phfts"},{"name":"websearch_to_tsquery","value":"wfts"}],"default":""},{"displayName":"Field Value","name":"keyValue","type":"string","default":""}]}],"description":"Filter to decide which rows get deleted"},{"displayName":"See <a href=\"https://postgrest.org/en/stable/references/api/tables_views.html#horizontal-filtering\" target=\"_blank\">PostgREST guide</a> to creating filters","name":"jsonNotice","type":"notice","displayOptions":{"show":{"resource":["row"],"operation":["delete"],"filterType":["string"]}},"default":""},{"displayName":"Filters (String)","name":"filterString","type":"string","displayOptions":{"show":{"resource":["row"],"operation":["delete"],"filterType":["string"]}},"default":"","placeholder":"name=eq.jhon"},{"displayName":"Select Conditions","name":"filters","type":"fixedCollection","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["row"],"operation":["get"]}},"default":{},"placeholder":"Add Condition","options":[{"displayName":"Conditions","name":"conditions","values":[{"displayName":"Name or ID","name":"keyName","type":"options","typeOptions":{"loadOptionsDependsOn":["tableId"],"loadOptionsMethod":"getTableColumns"},"default":"","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"},{"displayName":"Value","name":"keyValue","type":"string","default":""}]}]},{"displayName":"Return All","name":"returnAll","type":"boolean","noDataExpression":true,"displayOptions":{"show":{"resource":["row"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["row"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1},"default":50,"description":"Max number of results to return"},{"displayName":"Filter","name":"filterType","type":"options","options":[{"name":"None","value":"none"},{"name":"Build Manually","value":"manual"},{"name":"String","value":"string"}],"displayOptions":{"show":{"resource":["row"],"operation":["getAll"]}},"default":"manual"},{"displayName":"Must Match","name":"matchType","type":"options","options":[{"name":"Any Filter","value":"anyFilter"},{"name":"All Filters","value":"allFilters"}],"displayOptions":{"show":{"resource":["row"],"operation":["getAll"],"filterType":["manual"]}},"default":"anyFilter"},{"displayName":"Filters","name":"filters","type":"fixedCollection","typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["row"],"operation":["getAll"],"filterType":["manual"]}},"default":{},"placeholder":"Add Condition","options":[{"displayName":"Conditions","name":"conditions","values":[{"displayName":"Field Name or ID","name":"keyName","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsDependsOn":["tableId"],"loadOptionsMethod":"getTableColumns"},"default":""},{"displayName":"Condition","name":"condition","type":"options","options":[{"name":"Equals","value":"eq"},{"name":"Full-Text","value":"fullText"},{"name":"Greater Than","value":"gt"},{"name":"Greater Than or Equal","value":"gte"},{"name":"ILIKE operator","value":"ilike","description":"Use * in place of %"},{"name":"Is","value":"is","description":"Checking for exact equality (null,true,false,unknown)"},{"name":"Less Than","value":"lt"},{"name":"Less Than or Equal","value":"lte"},{"name":"LIKE operator","value":"like","description":"Use * in place of %"},{"name":"Not Equals","value":"neq"}],"default":""},{"displayName":"Search Function","name":"searchFunction","type":"options","displayOptions":{"show":{"condition":["fullText"]}},"options":[{"name":"to_tsquery","value":"fts"},{"name":"plainto_tsquery","value":"plfts"},{"name":"phraseto_tsquery","value":"phfts"},{"name":"websearch_to_tsquery","value":"wfts"}],"default":""},{"displayName":"Field Value","name":"keyValue","type":"string","default":""}]}],"description":"Filter to decide which rows get retrieved"},{"displayName":"See <a href=\"https://postgrest.org/en/stable/references/api/tables_views.html#horizontal-filtering\" target=\"_blank\">PostgREST guide</a> to creating filters","name":"jsonNotice","type":"notice","displayOptions":{"show":{"resource":["row"],"operation":["getAll"],"filterType":["string"]}},"default":""},{"displayName":"Filters (String)","name":"filterString","type":"string","displayOptions":{"show":{"resource":["row"],"operation":["getAll"],"filterType":["string"]}},"default":"","placeholder":"name=eq.jhon"}],"codex":{"categories":["Data & Storage"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.supabase/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/supabase/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Supabase/supabase.svg"},
|
|
@@ -442,7 +443,7 @@
|
|
|
442
443
|
{"displayName":"WooCommerce Trigger","name":"n8n-nodes-base.wooCommerceTrigger","group":["trigger"],"version":1,"description":"Handle WooCommerce events via webhooks","defaults":{"name":"WooCommerce Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"wooCommerceApi","required":true}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Event","name":"event","type":"options","required":true,"default":"","options":[{"name":"coupon.created","value":"coupon.created"},{"name":"coupon.deleted","value":"coupon.deleted"},{"name":"coupon.updated","value":"coupon.updated"},{"name":"customer.created","value":"customer.created"},{"name":"customer.deleted","value":"customer.deleted"},{"name":"customer.updated","value":"customer.updated"},{"name":"order.created","value":"order.created"},{"name":"order.deleted","value":"order.deleted"},{"name":"order.updated","value":"order.updated"},{"name":"product.created","value":"product.created"},{"name":"product.deleted","value":"product.deleted"},{"name":"product.updated","value":"product.updated"}],"description":"Determines which resource events the webhook is triggered for"}],"codex":{"categories":["Sales"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.woocommercetrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/wooCommerce/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/WooCommerce/wooCommerce.svg"},
|
|
443
444
|
{"displayName":"Wordpress","name":"n8n-nodes-base.wordpress","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Wordpress API","defaults":{"name":"Wordpress"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"wordpressApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Post","value":"post"},{"name":"Page","value":"page"},{"name":"User","value":"user"}],"default":"post"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["post"]}},"options":[{"name":"Create","value":"create","description":"Create a post","action":"Create a post"},{"name":"Get","value":"get","description":"Get a post","action":"Get a post"},{"name":"Get Many","value":"getAll","description":"Get many posts","action":"Get many posts"},{"name":"Update","value":"update","description":"Update a post","action":"Update a post"}],"default":"create"},{"displayName":"Title","name":"title","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["post"],"operation":["create"]}},"description":"The title for the post"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["post"],"operation":["create"]}},"options":[{"displayName":"Author Name or ID","name":"authorId","type":"options","typeOptions":{"loadOptionsMethod":"getAuthors"},"default":"","description":"The ID for the author of the object. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Content","name":"content","type":"string","default":"","description":"The content for the post"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"An alphanumeric identifier for the object unique to its type"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"A password to protect access to the content and excerpt"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"draft"},{"name":"Future","value":"future"},{"name":"Pending","value":"pending"},{"name":"Private","value":"private"},{"name":"Publish","value":"publish"}],"default":"draft","description":"A named status for the post"},{"displayName":"Comment Status","name":"commentStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"Whether or not comments are open on the post"},{"displayName":"Ping Status","name":"pingStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"If the a message should be send to announce the post"},{"displayName":"Format","name":"format","type":"options","options":[{"name":"Aside","value":"aside"},{"name":"Audio","value":"audio"},{"name":"Chat","value":"chat"},{"name":"Gallery","value":"gallery"},{"name":"Image","value":"image"},{"name":"Link","value":"link"},{"name":"Quote","value":"quote"},{"name":"Standard","value":"standard"},{"name":"Status","value":"status"},{"name":"Video","value":"video"}],"default":"standard","description":"Whether or not comments are open on the post"},{"displayName":"Sticky","name":"sticky","type":"boolean","default":false,"description":"Whether or not the object should be treated as sticky"},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getCategories"},"default":[],"description":"The terms assigned to the object in the category taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Tag Names or IDs","name":"tags","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getTags"},"default":[],"description":"The terms assigned to the object in the post_tag taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Template","name":"postTemplate","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Elementor Template","name":"elementor","type":"boolean","default":true,"description":"Whether site uses elementor page builder"},{"displayName":"Template","name":"template","type":"string","default":"","description":"The theme file to use","displayOptions":{"show":{"elementor":[false]}}},{"displayName":"Template","name":"template","type":"options","options":[{"name":"Standard","value":""},{"name":"Elementor Canvas","value":"elementor_canvas"},{"name":"Elementor Header Footer","value":"elementor_header_footer"},{"name":"Elementor Theme","value":"elementor_theme"}],"default":"","description":"The Elementor template to use","displayOptions":{"show":{"elementor":[true]}}}]}]}]},{"displayName":"Post ID","name":"postId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["post"],"operation":["update"]}},"description":"Unique identifier for the object"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["post"],"operation":["update"]}},"options":[{"displayName":"Author Name or ID","name":"authorId","type":"options","typeOptions":{"loadOptionsMethod":"getAuthors"},"default":"","description":"The ID for the author of the object. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Title","name":"title","type":"string","default":"","description":"The title for the post"},{"displayName":"Content","name":"content","type":"string","default":"","description":"The content for the post"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"An alphanumeric identifier for the object unique to its type"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"A password to protect access to the content and excerpt"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"draft"},{"name":"Future","value":"future"},{"name":"Pending","value":"pending"},{"name":"Private","value":"private"},{"name":"Publish","value":"publish"}],"default":"draft","description":"A named status for the post"},{"displayName":"Comment Status","name":"commentStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"Whether or not comments are open on the post"},{"displayName":"Ping Status","name":"pingStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"Whether or not comments are open on the post"},{"displayName":"Format","name":"format","type":"options","options":[{"name":"Aside","value":"aside"},{"name":"Audio","value":"audio"},{"name":"Chat","value":"chat"},{"name":"Gallery","value":"gallery"},{"name":"Image","value":"image"},{"name":"Link","value":"link"},{"name":"Quote","value":"quote"},{"name":"Standard","value":"standard"},{"name":"Status","value":"status"},{"name":"Video","value":"video"}],"default":"standard","description":"The format of the post"},{"displayName":"Sticky","name":"sticky","type":"boolean","default":false,"description":"Whether or not the object should be treated as sticky"},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getCategories"},"default":[],"description":"The terms assigned to the object in the category taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Tag Names or IDs","name":"tags","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getTags"},"default":[],"description":"The terms assigned to the object in the post_tag taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Template","name":"postTemplate","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Elementor Template","name":"elementor","type":"boolean","default":true,"description":"Whether site uses elementor page builder"},{"displayName":"Template","name":"template","type":"string","default":"","description":"The theme file to use","displayOptions":{"show":{"elementor":[false]}}},{"displayName":"Template","name":"template","type":"options","options":[{"name":"Standard","value":""},{"name":"Elementor Canvas","value":"elementor_canvas"},{"name":"Elementor Header Footer","value":"elementor_header_footer"},{"name":"Elementor Theme","value":"elementor_theme"}],"default":"","description":"The Elementor template to use","displayOptions":{"show":{"elementor":[true]}}}]}]}]},{"displayName":"Post ID","name":"postId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["post"],"operation":["get"]}},"description":"Unique identifier for the object"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["post"],"operation":["get"]}},"options":[{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"The password for the post if it is password protected"},{"displayName":"Context","name":"context","type":"options","options":[{"name":"View","value":"view"},{"name":"Embed","value":"embed"},{"name":"Edit","value":"edit"}],"default":"view","description":"Scope under which the request is made; determines fields present in response"}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["post"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["post"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":10},"default":5,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["post"],"operation":["getAll"]}},"options":[{"displayName":"After","name":"after","type":"dateTime","default":"","description":"Limit response to posts published after a given ISO8601 compliant date"},{"displayName":"Author Names or IDs","name":"author","type":"multiOptions","default":[],"typeOptions":{"loadOptionsMethod":"getAuthors"},"description":"Limit result set to posts assigned to specific authors. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Before","name":"before","type":"dateTime","default":"","description":"Limit response to posts published before a given ISO8601 compliant date"},{"displayName":"Category Names or IDs","name":"categories","type":"multiOptions","default":[],"typeOptions":{"loadOptionsMethod":"getCategories"},"description":"Limit result set to all items that have the specified term assigned in the categories taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Context","name":"context","type":"options","options":[{"name":"View","value":"view"},{"name":"Embed","value":"embed"},{"name":"Edit","value":"edit"}],"default":"view","description":"Scope under which the request is made; determines fields present in response"},{"displayName":"Exclude Categories","name":"excludedCategories","type":"multiOptions","default":[],"typeOptions":{"loadOptionsMethod":"getCategories"},"description":"Limit result set to all items except those that have the specified term assigned in the categories taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Exclude Tags","name":"excludedTags","type":"multiOptions","default":[],"typeOptions":{"loadOptionsMethod":"getTags"},"description":"Limit result set to all items except those that have the specified term assigned in the tags taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Order","name":"order","type":"options","options":[{"name":"ASC","value":"asc"},{"name":"DESC","value":"desc"}],"default":"desc","description":"Order sort attribute ascending or descending"},{"displayName":"Order By","name":"orderBy","type":"options","options":[{"name":"Author","value":"author"},{"name":"Date","value":"date"},{"name":"ID","value":"id"},{"name":"Include","value":"include"},{"name":"Include Slugs","value":"include_slugs"},{"name":"Modified","value":"modified"},{"name":"Parent","value":"parent"},{"name":"Relevance","value":"relevance"},{"name":"Slug","value":"slug"},{"name":"Title","value":"title"}],"default":"id","description":"Sort collection by object attribute"},{"displayName":"Search","name":"search","type":"string","default":"","description":"Limit results to those matching a string"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"draft"},{"name":"Future","value":"future"},{"name":"Pending","value":"pending"},{"name":"Private","value":"private"},{"name":"Publish","value":"publish"}],"default":"publish","description":"The status of the post"},{"displayName":"Sticky","name":"sticky","type":"boolean","default":false,"description":"Whether to limit the result set to items that are sticky"},{"displayName":"Tag Names or IDs","name":"tags","type":"multiOptions","default":[],"typeOptions":{"loadOptionsMethod":"getTags"},"description":"Limit result set to all items that have the specified term assigned in the tags taxonomy. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."}]},{"displayName":"Post ID","name":"postId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["post"],"operation":["delete"]}},"description":"Unique identifier for the object"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["post"],"operation":["delete"]}},"options":[{"displayName":"Force","name":"force","type":"boolean","default":false,"description":"Whether to bypass trash and force deletion"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["page"]}},"options":[{"name":"Create","value":"create","description":"Create a page","action":"Create a page"},{"name":"Get","value":"get","description":"Get a page","action":"Get a page"},{"name":"Get Many","value":"getAll","description":"Get many pages","action":"Get many pages"},{"name":"Update","value":"update","description":"Update a page","action":"Update a page"}],"default":"create"},{"displayName":"Title","name":"title","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["page"],"operation":["create"]}},"description":"The title for the page"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["page"],"operation":["create"]}},"options":[{"displayName":"Author Name or ID","name":"authorId","type":"options","typeOptions":{"loadOptionsMethod":"getAuthors"},"default":"","description":"The ID for the author of the object. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Parent ID","name":"parent","type":"number","default":"","description":"The ID for the parent of the post"},{"displayName":"Content","name":"content","type":"string","default":"","description":"The content for the page"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"An alphanumeric identifier for the object unique to its type"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"A password to protect access to the content and excerpt"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"draft"},{"name":"Future","value":"future"},{"name":"Pending","value":"pending"},{"name":"Private","value":"private"},{"name":"Publish","value":"publish"}],"default":"draft","description":"A named status for the page"},{"displayName":"Comment Status","name":"commentStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"Whether or not comments are open on the page"},{"displayName":"Ping Status","name":"pingStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"If the a message should be send to announce the page"},{"displayName":"Template","name":"pageTemplate","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Elementor Template","name":"elementor","type":"boolean","default":true,"description":"Whether site uses elementor page builder"},{"displayName":"Template","name":"template","type":"string","default":"","description":"The theme file to use","displayOptions":{"show":{"elementor":[false]}}},{"displayName":"Template","name":"template","type":"options","options":[{"name":"Standard","value":""},{"name":"Elementor Canvas","value":"elementor_canvas"},{"name":"Elementor Header Footer","value":"elementor_header_footer"},{"name":"Elementor Theme","value":"elementor_theme"}],"default":"","description":"The Elementor template to use","displayOptions":{"show":{"elementor":[true]}}}]}]},{"displayName":"Menu Order","name":"menuOrder","type":"number","default":0,"description":"The order of the page in relation to other pages"},{"displayName":"Comment Status","name":"commentStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Closed","value":"closed"}],"default":"open","description":"Whether or not comments are open on the page"},{"displayName":"Featured Media ID","name":"featuredMediaId","type":"number","default":"","description":"The ID of the featured media for the page"}]},{"displayName":"Page ID","name":"pageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["page"],"operation":["update"]}},"description":"Unique identifier for the object"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["page"],"operation":["update"]}},"options":[{"displayName":"Author Name or ID","name":"authorId","type":"options","typeOptions":{"loadOptionsMethod":"getAuthors"},"default":"","description":"The ID for the author of the object. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Parent ID","name":"parent","type":"number","default":"","description":"The ID for the parent of the post"},{"displayName":"Title","name":"title","type":"string","default":"","description":"The title for the page"},{"displayName":"Content","name":"content","type":"string","default":"","description":"The content for the page"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"An alphanumeric identifier for the object unique to its type"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"A password to protect access to the content and excerpt"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"draft"},{"name":"Future","value":"future"},{"name":"Pending","value":"pending"},{"name":"Private","value":"private"},{"name":"Publish","value":"publish"}],"default":"draft","description":"A named status for the page"},{"displayName":"Comment Status","name":"commentStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"Whether or not comments are open on the page"},{"displayName":"Ping Status","name":"pingStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Close","value":"closed"}],"default":"open","description":"Whether or not comments are open on the page"},{"displayName":"Template","name":"pageTemplate","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":false},"options":[{"displayName":"Values","name":"values","values":[{"displayName":"Elementor Template","name":"elementor","type":"boolean","default":true,"description":"Whether site uses elementor page builder"},{"displayName":"Template","name":"template","type":"string","default":"","description":"The theme file to use","displayOptions":{"show":{"elementor":[false]}}},{"displayName":"Template","name":"template","type":"options","options":[{"name":"Standard","value":""},{"name":"Elementor Canvas","value":"elementor_canvas"},{"name":"Elementor Header Footer","value":"elementor_header_footer"},{"name":"Elementor Theme","value":"elementor_theme"}],"default":"","description":"The Elementor template to use","displayOptions":{"show":{"elementor":[true]}}}]}]},{"displayName":"Menu Order","name":"menuOrder","type":"number","default":0,"description":"The order of the page in relation to other pages"},{"displayName":"Comment Status","name":"commentStatus","type":"options","options":[{"name":"Open","value":"open"},{"name":"Closed","value":"closed"}],"default":"open","description":"Whether or not comments are open on the page"},{"displayName":"Featured Media ID","name":"featuredMediaId","type":"number","default":"","description":"The ID of the featured media for the page"}]},{"displayName":"Page ID","name":"pageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["page"],"operation":["get"]}},"description":"Unique identifier for the object"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["page"],"operation":["get"]}},"options":[{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"The password for the page if it is password protected"},{"displayName":"Context","name":"context","type":"options","options":[{"name":"View","value":"view"},{"name":"Embed","value":"embed"},{"name":"Edit","value":"edit"}],"default":"view","description":"Scope under which the request is made; determines fields present in response"}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["page"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["page"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":10},"default":5,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["page"],"operation":["getAll"]}},"options":[{"displayName":"After","name":"after","type":"dateTime","default":"","description":"Limit response to pages published after a given ISO8601 compliant date"},{"displayName":"Author Names or IDs","name":"author","type":"multiOptions","default":[],"typeOptions":{"loadOptionsMethod":"getAuthors"},"description":"Limit result set to pages assigned to specific authors. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Before","name":"before","type":"dateTime","default":"","description":"Limit response to pages published before a given ISO8601 compliant date"},{"displayName":"Context","name":"context","type":"options","options":[{"name":"View","value":"view"},{"name":"Embed","value":"embed"},{"name":"Edit","value":"edit"}],"default":"view","description":"Scope under which the request is made; determines fields present in response"},{"displayName":"Menu Order","name":"menuOrder","type":"number","default":0,"description":"Limit result set to items with a specific menu order value"},{"displayName":"Order","name":"order","type":"options","options":[{"name":"ASC","value":"asc"},{"name":"DESC","value":"desc"}],"default":"desc","description":"Order sort attribute ascending or descending"},{"displayName":"Order By","name":"orderBy","type":"options","options":[{"name":"Author","value":"author"},{"name":"Date","value":"date"},{"name":"ID","value":"id"},{"name":"Include","value":"include"},{"name":"Include Slugs","value":"include_slugs"},{"name":"Modified","value":"modified"},{"name":"Parent","value":"parent"},{"name":"Relevance","value":"relevance"},{"name":"Slug","value":"slug"},{"name":"Title","value":"title"}],"default":"id","description":"Sort collection by object attribute"},{"displayName":"Page","name":"page","type":"number","default":1,"description":"Current page of the collection"},{"displayName":"Parent Page ID","name":"parent","type":"number","default":"","description":"Limit result set to items with a particular parent page ID"},{"displayName":"Search","name":"search","type":"string","default":"","description":"Limit results to those matching a string"},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"draft"},{"name":"Future","value":"future"},{"name":"Pending","value":"pending"},{"name":"Private","value":"private"},{"name":"Publish","value":"publish"}],"default":"publish","description":"The status of the page"}]},{"displayName":"Page ID","name":"pageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["page"],"operation":["delete"]}},"description":"Unique identifier for the object"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["page"],"operation":["delete"]}},"options":[{"displayName":"Force","name":"force","type":"boolean","default":false,"description":"Whether to bypass trash and force deletion"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["user"]}},"options":[{"name":"Create","value":"create","description":"Create a user","action":"Create a user"},{"name":"Get","value":"get","description":"Get a user","action":"Get a user"},{"name":"Get Many","value":"getAll","description":"Get many users","action":"Get many users"},{"name":"Update","value":"update","description":"Update a user","action":"Update a user"}],"default":"create"},{"displayName":"Username","name":"username","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"description":"Login name for the user"},{"displayName":"Name","name":"name","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"description":"Display name for the user"},{"displayName":"First Name","name":"firstName","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"description":"First name for the user"},{"displayName":"Last Name","name":"lastName","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"description":"Last name for the user"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"description":"The email address for the user"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"description":"Password for the user (never included)"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"options":[{"displayName":"URL","name":"url","type":"string","default":"","description":"URL of the user"},{"displayName":"Description","name":"description","type":"string","default":"","description":"Description of the user"},{"displayName":"Nickname","name":"nickname","type":"string","default":"","description":"The nickname for the user"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"An alphanumeric identifier for the user"}]},{"displayName":"User ID","name":"userId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["update"]}},"description":"Unique identifier for the user"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["update"]}},"options":[{"displayName":"Username","name":"username","type":"string","default":"","description":"Login name for the user"},{"displayName":"Name","name":"name","type":"string","default":"","description":"Display name for the user"},{"displayName":"First Name","name":"firstName","type":"string","default":"","description":"First name for the user"},{"displayName":"Last Name","name":"lastName","type":"string","default":"","description":"Last name for the user"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","default":"","description":"The email address for the user"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"default":"","description":"Password for the user (never included)"},{"displayName":"URL","name":"url","type":"string","default":"","description":"URL of the user"},{"displayName":"Description","name":"description","type":"string","default":"","description":"Description of the user"},{"displayName":"Nickname","name":"nickname","type":"string","default":"","description":"The nickname for the user"},{"displayName":"Slug","name":"slug","type":"string","default":"","description":"An alphanumeric identifier for the user"}]},{"displayName":"User ID","name":"userId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["get"]}},"description":"Unique identifier for the user"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["get"]}},"options":[{"displayName":"Context","name":"context","type":"options","options":[{"name":"View","value":"view"},{"name":"Embed","value":"embed"},{"name":"Edit","value":"edit"}],"default":"view","description":"Scope under which the request is made; determines fields present in response"}]},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["user"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["user"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":10},"default":5,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["getAll"]}},"options":[{"displayName":"Context","name":"context","type":"options","options":[{"name":"View","value":"view"},{"name":"Embed","value":"embed"},{"name":"Edit","value":"edit"}],"default":"view","description":"Scope under which the request is made; determines fields present in response"},{"displayName":"Order By","name":"orderBy","type":"options","options":[{"name":"Email","value":"email"},{"name":"ID","value":"id"},{"name":"Include","value":"include"},{"name":"Include Slugs","value":"include_slugs"},{"name":"Name","value":"name"},{"name":"Registered Date","value":"registered_date"},{"name":"Slug","value":"slug"},{"name":"URL","value":"url"}],"default":"id","description":"Sort collection by object attribute"},{"displayName":"Order","name":"order","type":"options","options":[{"name":"ASC","value":"asc"},{"name":"DESC","value":"desc"}],"default":"desc","description":"Order sort attribute ascending or descending"},{"displayName":"Search","name":"search","type":"string","default":"","description":"Limit results to those matching a string"},{"displayName":"Who","name":"who","type":"options","options":[{"name":"Authors","value":"authors"}],"default":"authors","description":"Limit result set to users who are considered authors"}]},{"displayName":"Reassign","name":"reassign","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["user"],"operation":["delete"]}},"description":"Reassign the deleted user's posts and links to this user ID"}],"codex":{"categories":["Marketing"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.wordpress/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/wordpress/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Wordpress/wordpress.svg"},
|
|
444
445
|
{"displayName":"Workable Trigger","name":"n8n-nodes-base.workableTrigger","group":["trigger"],"version":1,"subtitle":"={{$parameter[\"triggerOn\"]}}","description":"Starts the workflow when Workable events occur","defaults":{"name":"Workable Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"workableApi","required":true}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Trigger On","name":"triggerOn","type":"options","options":[{"name":"Candidate Created","value":"candidateCreated"},{"name":"Candidate Moved","value":"candidateMoved"}],"default":"","required":true},{"displayName":"Filters","name":"filters","type":"collection","placeholder":"Add Filter","default":{},"options":[{"displayName":"Job Name or ID","name":"job","type":"options","typeOptions":{"loadOptionsMethod":"getJobs"},"default":"","description":"Get notifications only for one job. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Stage Name or ID","name":"stage","type":"options","typeOptions":{"loadOptionsMethod":"getStages"},"default":"","description":"Get notifications for specific stages. e.g. 'hired'. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."}]}],"codex":{"categories":["Miscellaneous"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.workabletrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/workable/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Workable/workable.png"},
|
|
445
|
-
{"displayName":"Workflow Trigger","name":"n8n-nodes-base.workflowTrigger","icon":"fa:network-wired","iconColor":"orange-red","group":["trigger"],"version":1,"description":"Triggers based on various lifecycle events, like when a workflow is activated","eventTriggerDescription":"","mockManualExecution":true,"activationMessage":"Your workflow will now trigger executions on the event you have defined.","defaults":{"name":"Workflow Trigger","color":"#ff6d5a"},"inputs":[],"outputs":["main"],"properties":[{"displayName":"Events","name":"events","type":"multiOptions","required":true,"default":[],"description":"Specifies under which conditions an execution should happen:\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li><b>Active Workflow Updated</b>: Triggers when this workflow is updated</li>\n\t\t\t\t\t\t<li><b>Workflow Activated</b>: Triggers when this workflow is activated</li>\n\t\t\t\t\t</ul>","options":[{"name":"Active Workflow Updated","value":"update","description":"Triggers when this workflow is updated"},{"name":"Workflow Activated","value":"activate","description":"Triggers when this workflow is activated"}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Flow","Other Trigger Nodes"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.workflowtrigger/"}]}}},
|
|
446
|
+
{"displayName":"Workflow Trigger","hidden":true,"name":"n8n-nodes-base.workflowTrigger","icon":"fa:network-wired","iconColor":"orange-red","group":["trigger"],"version":1,"description":"Triggers based on various lifecycle events, like when a workflow is activated","eventTriggerDescription":"","mockManualExecution":true,"activationMessage":"Your workflow will now trigger executions on the event you have defined.","defaults":{"name":"Workflow Trigger","color":"#ff6d5a"},"inputs":[],"outputs":["main"],"properties":[{"displayName":"This node is deprecated and would not be updated in the future. Please use 'n8n Trigger' node instead.","name":"oldVersionNotice","type":"notice","default":""},{"displayName":"Events","name":"events","type":"multiOptions","required":true,"default":[],"description":"Specifies under which conditions an execution should happen:\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li><b>Active Workflow Updated</b>: Triggers when this workflow is updated</li>\n\t\t\t\t\t\t<li><b>Workflow Activated</b>: Triggers when this workflow is activated</li>\n\t\t\t\t\t</ul>","options":[{"name":"Active Workflow Updated","value":"update","description":"Triggers when this workflow is updated"},{"name":"Workflow Activated","value":"activate","description":"Triggers when this workflow is activated"}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Flow","Other Trigger Nodes"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.workflowtrigger/"}]}}},
|
|
446
447
|
{"hidden":true,"displayName":"Write Binary File","name":"n8n-nodes-base.writeBinaryFile","icon":"fa:file-export","group":["output"],"version":1,"description":"Writes a binary file to disk","defaults":{"name":"Write Binary File","color":"#CC2233"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"File Name","name":"fileName","type":"string","default":"","required":true,"placeholder":"/data/example.jpg","description":"Path to which the file should be written"},{"displayName":"Property Name","name":"dataPropertyName","type":"string","default":"data","required":true,"description":"Name of the binary property which contains the data for the file to be written"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Append","name":"append","type":"boolean","default":false,"description":"Whether to append to an existing file"}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Files"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.readwritefile/"}]},"alias":["Text","Save","Export"]}},
|
|
447
448
|
{"displayName":"Wufoo Trigger","name":"n8n-nodes-base.wufooTrigger","group":["trigger"],"version":1,"description":"Handle Wufoo events via webhooks","defaults":{"name":"Wufoo Trigger"},"inputs":[],"outputs":["main"],"credentials":[{"name":"wufooApi","required":true}],"webhooks":[{"name":"default","httpMethod":"POST","responseMode":"onReceived","path":"webhook"}],"properties":[{"displayName":"Forms Name or ID","name":"form","type":"options","required":true,"default":"","typeOptions":{"loadOptionsMethod":"getForms"},"description":"The form upon which will trigger this node when a new entry is made. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Only Answers","name":"onlyAnswers","type":"boolean","default":true,"description":"Whether to return only the answers of the form and not any of the other data"}],"codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.wufootrigger/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/wufoo/"}]},"alias":["Form"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Wufoo/wufoo.png"},
|
|
448
449
|
{"displayName":"Xero","name":"n8n-nodes-base.xero","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Xero API","defaults":{"name":"Xero"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"xeroOAuth2Api","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Contact","value":"contact"},{"name":"Invoice","value":"invoice"}],"default":"invoice"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["contact"]}},"options":[{"name":"Create","value":"create","description":"Create a contact","action":"Create a contact"},{"name":"Get","value":"get","description":"Get a contact","action":"Get a contact"},{"name":"Get Many","value":"getAll","description":"Get many contacts","action":"Get many contacts"},{"name":"Update","value":"update","description":"Update a contact","action":"Update a contact"}],"default":"create"},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["contact"],"operation":["create"]}},"required":true},{"displayName":"Name","name":"name","type":"string","default":"","displayOptions":{"show":{"resource":["contact"],"operation":["create"]}},"description":"Full name of contact/organisation","required":true},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["contact"],"operation":["create"]}},"options":[{"displayName":"Account Number","name":"accountNumber","type":"string","default":"","description":"A user defined account number"},{"displayName":"Addresses","name":"addressesUi","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Address","options":[{"name":"addressesValues","displayName":"Address","values":[{"displayName":"Type","name":"type","type":"options","options":[{"name":"PO Box","value":"POBOX"},{"name":"Street","value":"STREET"}],"default":""},{"displayName":"Line 1","name":"line1","type":"string","default":""},{"displayName":"Line 2","name":"line2","type":"string","default":""},{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Region","name":"region","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"Country","name":"country","type":"string","default":""},{"displayName":"Attention To","name":"attentionTo","type":"string","default":""}]}]},{"displayName":"Bank Account Details","name":"bankAccountDetails","type":"string","default":"","description":"Bank account number of contact"},{"displayName":"Contact Number","name":"contactNumber","type":"string","default":"","description":"This field is read only on the Xero contact screen, used to identify contacts in external systems"},{"displayName":"Contact Status","name":"contactStatus","type":"options","options":[{"name":"Active","value":"ACTIVE","description":"The Contact is active and can be used in transactions"},{"name":"Archived","value":"ARCHIVED","description":"The Contact is archived and can no longer be used in transactions"},{"name":"GDPR Request","value":"GDPRREQUEST","description":"The Contact is the subject of a GDPR erasure request"}],"default":"","description":"Current status of a contact - see contact status types"},{"displayName":"Default Currency","name":"defaultCurrency","type":"string","default":"","description":"Default currency for raising invoices against contact"},{"displayName":"Email","name":"emailAddress","type":"string","default":"","description":"Email address of contact person (umlauts not supported) (max length = 255)"},{"displayName":"First Name","name":"firstName","type":"string","default":"","description":"First name of contact person (max length = 255)"},{"displayName":"Last Name","name":"lastName","type":"string","default":"","description":"Last name of contact person (max length = 255)"},{"displayName":"Phones","name":"phonesUi","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Phone","options":[{"name":"phonesValues","displayName":"Phones","values":[{"displayName":"Type","name":"phoneType","type":"options","options":[{"name":"Default","value":"DEFAULT"},{"name":"DDI","value":"DDI"},{"name":"Mobile","value":"MOBILE"},{"name":"Fax","value":"FAX"}],"default":""},{"displayName":"Number","name":"phoneNumber","type":"string","default":""},{"displayName":"Area Code","name":"phoneAreaCode","type":"string","default":""},{"displayName":"Country Code","name":"phoneCountryCode","type":"string","default":""}]}]},{"displayName":"Purchase Default Account Code Name or ID","name":"purchasesDefaultAccountCode","type":"options","typeOptions":{"loadOptionsMethod":"getAccountCodes"},"default":"","description":"The default purchases account code for contacts. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Sales Default Account Code Name or ID","name":"salesDefaultAccountCode","type":"options","typeOptions":{"loadOptionsMethod":"getAccountCodes"},"default":"","description":"The default sales account code for contacts. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Skype","name":"skypeUserName","type":"string","default":"","description":"Skype user name of contact"},{"displayName":"Tax Number","name":"taxNumber","type":"string","default":"","description":"Tax number of contact"},{"displayName":"Xero Network Key","name":"xeroNetworkKey","type":"string","default":"","description":"Store XeroNetworkKey for contacts"}]},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["contact"],"operation":["get"]}},"required":true},{"displayName":"Contact ID","name":"contactId","type":"string","default":"","displayOptions":{"show":{"resource":["contact"],"operation":["get"]}},"required":true},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}},"required":true},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["contact"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":100,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["contact"],"operation":["getAll"]}},"options":[{"displayName":"Include Archived","name":"includeArchived","type":"boolean","default":false,"description":"Whether contacts with a status of ARCHIVED will be included in the response"},{"displayName":"Order By","name":"orderBy","type":"string","placeholder":"contactID","default":"","description":"Order by any element returned"},{"displayName":"Sort Order","name":"sortOrder","type":"options","options":[{"name":"Asc","value":"ASC"},{"name":"Desc","value":"DESC"}],"default":""},{"displayName":"Where","name":"where","type":"string","placeholder":"EmailAddress!=null&&EmailAddress.StartsWith(\"boom\")","default":"","description":"The where parameter allows you to filter on endpoints and elements that don't have explicit parameters. <a href=\"https://developer.xero.com/documentation/api/requests-and-responses#get-modified\">Examples Here</a>."}]},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["contact"],"operation":["update"]}},"required":true},{"displayName":"Contact ID","name":"contactId","type":"string","default":"","displayOptions":{"show":{"resource":["contact"],"operation":["update"]}},"required":true},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["contact"],"operation":["update"]}},"options":[{"displayName":"Account Number","name":"accountNumber","type":"string","default":"","description":"A user defined account number"},{"displayName":"Addresses","name":"addressesUi","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Address","options":[{"name":"addressesValues","displayName":"Address","values":[{"displayName":"Type","name":"type","type":"options","options":[{"name":"PO Box","value":"POBOX"},{"name":"Street","value":"STREET"}],"default":""},{"displayName":"Line 1","name":"line1","type":"string","default":""},{"displayName":"Line 2","name":"line2","type":"string","default":""},{"displayName":"City","name":"city","type":"string","default":""},{"displayName":"Region","name":"region","type":"string","default":""},{"displayName":"Postal Code","name":"postalCode","type":"string","default":""},{"displayName":"Country","name":"country","type":"string","default":""},{"displayName":"Attention To","name":"attentionTo","type":"string","default":""}]}]},{"displayName":"Bank Account Details","name":"bankAccountDetails","type":"string","default":"","description":"Bank account number of contact"},{"displayName":"Contact Number","name":"contactNumber","type":"string","default":"","description":"This field is read only on the Xero contact screen, used to identify contacts in external systems"},{"displayName":"Contact Status","name":"contactStatus","type":"options","options":[{"name":"Active","value":"ACTIVE","description":"The Contact is active and can be used in transactions"},{"name":"Archived","value":"ARCHIVED","description":"The Contact is archived and can no longer be used in transactions"},{"name":"GDPR Request","value":"GDPRREQUEST","description":"The Contact is the subject of a GDPR erasure request"}],"default":"","description":"Current status of a contact - see contact status types"},{"displayName":"Default Currency","name":"defaultCurrency","type":"string","default":"","description":"Default currency for raising invoices against contact"},{"displayName":"Email","name":"emailAddress","type":"string","default":"","description":"Email address of contact person (umlauts not supported) (max length = 255)"},{"displayName":"First Name","name":"firstName","type":"string","default":"","description":"First name of contact person (max length = 255)"},{"displayName":"Last Name","name":"lastName","type":"string","default":"","description":"Last name of contact person (max length = 255)"},{"displayName":"Name","name":"name","type":"string","default":"","description":"Full name of contact/organisation"},{"displayName":"Phones","name":"phonesUi","type":"fixedCollection","typeOptions":{"multipleValues":true},"default":{},"placeholder":"Add Phone","options":[{"name":"phonesValues","displayName":"Phones","values":[{"displayName":"Type","name":"phoneType","type":"options","options":[{"name":"Default","value":"DEFAULT"},{"name":"DDI","value":"DDI"},{"name":"Mobile","value":"MOBILE"},{"name":"Fax","value":"FAX"}],"default":""},{"displayName":"Number","name":"phoneNumber","type":"string","default":""},{"displayName":"Area Code","name":"phoneAreaCode","type":"string","default":""},{"displayName":"Country Code","name":"phoneCountryCode","type":"string","default":""}]}]},{"displayName":"Purchase Default Account Code Name or ID","name":"purchasesDefaultAccountCode","type":"options","typeOptions":{"loadOptionsMethod":"getAccountCodes"},"default":"","description":"The default purchases account code for contacts. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Sales Default Account Code Name or ID","name":"salesDefaultAccountCode","type":"options","typeOptions":{"loadOptionsMethod":"getAccountCodes"},"default":"","description":"The default sales account code for contacts. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Skype","name":"skypeUserName","type":"string","default":"","description":"Skype user name of contact"},{"displayName":"Tax Number","name":"taxNumber","type":"string","default":"","description":"Tax number of contact"},{"displayName":"Xero Network Key","name":"xeroNetworkKey","type":"string","default":"","description":"Store XeroNetworkKey for contacts"}]},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["invoice"]}},"options":[{"name":"Create","value":"create","description":"Create a invoice","action":"Create an invoice"},{"name":"Get","value":"get","description":"Get a invoice","action":"Get an invoice"},{"name":"Get Many","value":"getAll","description":"Get many invoices","action":"Get many invoices"},{"name":"Update","value":"update","description":"Update a invoice","action":"Update an invoice"}],"default":"create"},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["invoice"],"operation":["create"]}},"required":true},{"displayName":"Type","name":"type","type":"options","options":[{"name":"Bill","value":"ACCPAY","description":"Accounts Payable or supplier invoice"},{"name":"Sales Invoice","value":"ACCREC","description":"Accounts Receivable or customer invoice"}],"default":"","displayOptions":{"show":{"resource":["invoice"],"operation":["create"]}},"required":true,"description":"Invoice Type"},{"displayName":"Contact ID","name":"contactId","type":"string","default":"","displayOptions":{"show":{"resource":["invoice"],"operation":["create"]}},"required":true},{"displayName":"Line Items","name":"lineItemsUi","placeholder":"Add Line Item","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"displayOptions":{"show":{"resource":["invoice"],"operation":["create"]}},"description":"Line item data","options":[{"name":"lineItemsValues","displayName":"Line Item","values":[{"displayName":"Description","name":"description","type":"string","default":"","description":"A line item with just a description"},{"displayName":"Quantity","name":"quantity","type":"number","default":1,"typeOptions":{"minValue":1},"description":"LineItem Quantity"},{"displayName":"Unit Amount","name":"unitAmount","type":"string","default":"","description":"Lineitem unit amount. By default, unit amount will be rounded to two decimal places."},{"displayName":"Item Code Name or ID","name":"itemCode","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getItemCodes","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Account Code Name or ID","name":"accountCode","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getAccountCodes","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Tax Type","name":"taxType","type":"options","options":[{"name":"Tax on Purchases","value":"INPUT"},{"name":"Tax Exempt","value":"NONE"},{"name":"Tax on Sales","value":"OUTPUT"},{"name":"Sales Tax on Imports","value":"GSTONIMPORTS"}],"default":"","required":true},{"displayName":"Tax Amount","name":"taxAmount","type":"string","default":"","description":"The tax amount is auto calculated as a percentage of the line amount based on the tax rate"},{"displayName":"Line Amount","name":"lineAmount","type":"string","default":"","description":"The line amount reflects the discounted price if a DiscountRate has been used"},{"displayName":"Discount Rate","name":"discountRate","type":"string","default":"","description":"Percentage discount or discount amount being applied to a line item. Only supported on ACCREC invoices - ACCPAY invoices and credit notes in Xero do not support discounts."}]}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["invoice"],"operation":["create"]}},"options":[{"displayName":"Branding Theme Name or ID","name":"brandingThemeId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getBrandingThemes","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Currency Name or ID","name":"currency","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCurrencies","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Currency Rate","name":"currencyRate","type":"string","default":"","description":"The currency rate for a multicurrency invoice. If no rate is specified, the XE.com day rate is used."},{"displayName":"Date","name":"date","type":"dateTime","default":"","description":"Date invoice was issued - YYYY-MM-DD. If the Date element is not specified it will default to the current date based on the timezone setting of the organisation."},{"displayName":"Due Date","name":"dueDate","type":"dateTime","default":"","description":"Date invoice is due - YYYY-MM-DD"},{"displayName":"Expected Payment Date","name":"expectedPaymentDate","type":"dateTime","default":"","description":"Shown on sales invoices (Accounts Receivable) when this has been set"},{"displayName":"Invoice Number","name":"invoiceNumber","type":"string","default":""},{"displayName":"Line Amount Type","name":"lineAmountType","type":"options","options":[{"name":"Exclusive","value":"Exclusive","description":"Line items are exclusive of tax"},{"name":"Inclusive","value":"Inclusive","description":"Line items are inclusive tax"},{"name":"NoTax","value":"NoTax","description":"Line have no tax"}],"default":"Exclusive"},{"displayName":"Planned Payment Date","name":"plannedPaymentDate","type":"dateTime","default":"","description":"Shown on bills (Accounts Payable) when this has been set"},{"displayName":"Reference","name":"reference","type":"string","default":"","description":"ACCREC only - additional reference number (max length = 255)"},{"displayName":"Send To Contact","name":"sendToContact","type":"boolean","default":false,"description":"Whether the invoice in the Xero app should be marked as \"sent\". This can be set only on invoices that have been approved."},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"DRAFT"},{"name":"Submitted","value":"SUBMITTED"},{"name":"Authorised","value":"AUTHORISED"}],"default":"DRAFT"},{"displayName":"URL","name":"url","type":"string","default":"","description":"URL link to a source document - shown as \"Go to [appName]\" in the Xero app"}]},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["invoice"],"operation":["update"]}},"required":true},{"displayName":"Invoice ID","name":"invoiceId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["invoice"],"operation":["update"]}}},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["invoice"],"operation":["update"]}},"options":[{"displayName":"Branding Theme Name or ID","name":"brandingThemeId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getBrandingThemes","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Contact ID","name":"contactId","type":"string","default":""},{"displayName":"Currency Name or ID","name":"currency","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getCurrencies","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Currency Rate","name":"currencyRate","type":"string","default":"","description":"The currency rate for a multicurrency invoice. If no rate is specified, the XE.com day rate is used."},{"displayName":"Date","name":"date","type":"dateTime","default":"","description":"Date invoice was issued - YYYY-MM-DD. If the Date element is not specified it will default to the current date based on the timezone setting of the organisation."},{"displayName":"Due Date","name":"dueDate","type":"dateTime","default":"","description":"Date invoice is due - YYYY-MM-DD"},{"displayName":"Expected Payment Date","name":"expectedPaymentDate","type":"dateTime","default":"","description":"Shown on sales invoices (Accounts Receivable) when this has been set"},{"displayName":"Invoice Number","name":"invoiceNumber","type":"string","default":""},{"displayName":"Line Amount Type","name":"lineAmountType","type":"options","options":[{"name":"Exclusive","value":"Exclusive","description":"Line items are exclusive of tax"},{"name":"Inclusive","value":"Inclusive","description":"Line items are inclusive tax"},{"name":"NoTax","value":"NoTax","description":"Line have no tax"}],"default":"Exclusive"},{"displayName":"Line Items","name":"lineItemsUi","placeholder":"Add Line Item","type":"fixedCollection","default":{},"typeOptions":{"multipleValues":true},"description":"Line item data","options":[{"name":"lineItemsValues","displayName":"Line Item","values":[{"displayName":"Line Item ID","name":"lineItemId","type":"string","default":"","description":"The Xero generated identifier for a LineItem"},{"displayName":"Description","name":"description","type":"string","default":"","description":"A line item with just a description"},{"displayName":"Quantity","name":"quantity","type":"number","default":1,"typeOptions":{"minValue":1},"description":"LineItem Quantity"},{"displayName":"Unit Amount","name":"unitAmount","type":"string","default":"","description":"Lineitem unit amount. By default, unit amount will be rounded to two decimal places."},{"displayName":"Item Code Name or ID","name":"itemCode","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getItemCodes","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Account Code Name or ID","name":"accountCode","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getAccountCodes","loadOptionsDependsOn":["organizationId"]},"default":""},{"displayName":"Tax Type","name":"taxType","type":"options","options":[{"name":"Tax on Purchases","value":"INPUT"},{"name":"Tax Exempt","value":"NONE"},{"name":"Tax on Sales","value":"OUTPUT"},{"name":"Sales Tax on Imports","value":"GSTONIMPORTS"}],"default":"","required":true},{"displayName":"Tax Amount","name":"taxAmount","type":"string","default":"","description":"The tax amount is auto calculated as a percentage of the line amount based on the tax rate"},{"displayName":"Line Amount","name":"lineAmount","type":"string","default":"","description":"The line amount reflects the discounted price if a DiscountRate has been used"},{"displayName":"Discount Rate","name":"discountRate","type":"string","default":"","description":"Percentage discount or discount amount being applied to a line item. Only supported on ACCREC invoices - ACCPAY invoices and credit notes in Xero do not support discounts."}]}]},{"displayName":"Planned Payment Date","name":"plannedPaymentDate","type":"dateTime","default":"","description":"Shown on bills (Accounts Payable) when this has been set"},{"displayName":"Reference","name":"reference","type":"string","default":"","description":"ACCREC only - additional reference number (max length = 255)"},{"displayName":"Send To Contact","name":"sendToContact","type":"boolean","default":false,"description":"Whether the invoice in the Xero app should be marked as \"sent\". This can be set only on invoices that have been approved."},{"displayName":"Status","name":"status","type":"options","options":[{"name":"Draft","value":"DRAFT"},{"name":"Submitted","value":"SUBMITTED"},{"name":"Authorised","value":"AUTHORISED"}],"default":"DRAFT"},{"displayName":"URL","name":"url","type":"string","default":"","description":"URL link to a source document - shown as \"Go to [appName]\" in the Xero app"}]},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["invoice"],"operation":["get"]}},"required":true},{"displayName":"Invoice ID","name":"invoiceId","type":"string","default":"","required":true,"displayOptions":{"show":{"resource":["invoice"],"operation":["get"]}}},{"displayName":"Organization Name or ID","name":"organizationId","type":"options","description":"Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>","typeOptions":{"loadOptionsMethod":"getTenants"},"default":"","displayOptions":{"show":{"resource":["invoice"],"operation":["getAll"]}},"required":true},{"displayName":"Return All","name":"returnAll","type":"boolean","displayOptions":{"show":{"resource":["invoice"],"operation":["getAll"]}},"default":false,"description":"Whether to return all results or only up to a given limit"},{"displayName":"Limit","name":"limit","type":"number","displayOptions":{"show":{"resource":["invoice"],"operation":["getAll"],"returnAll":[false]}},"typeOptions":{"minValue":1,"maxValue":100},"default":100,"description":"Max number of results to return"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"displayOptions":{"show":{"resource":["invoice"],"operation":["getAll"]}},"options":[{"displayName":"Created By My App","name":"createdByMyApp","type":"boolean","default":false,"description":"Whether you'll only retrieve Invoices created by your app"},{"displayName":"Order By","name":"orderBy","type":"string","placeholder":"InvoiceID","default":"","description":"Order by any element returned"},{"displayName":"Sort Order","name":"sortOrder","type":"options","options":[{"name":"Asc","value":"ASC"},{"name":"Desc","value":"DESC"}],"default":""},{"displayName":"Statuses","name":"statuses","type":"multiOptions","options":[{"name":"Draft","value":"DRAFT"},{"name":"Submitted","value":"SUBMITTED"},{"name":"Authorised","value":"AUTHORISED"}],"default":[]},{"displayName":"Where","name":"where","type":"string","placeholder":"EmailAddress!=null&&EmailAddress.StartsWith(\"boom\")","default":"","description":"The where parameter allows you to filter on endpoints and elements that don't have explicit parameters. <a href=\"https://developer.xero.com/documentation/api/requests-and-responses#get-modified\">Examples Here</a>."}]}],"codex":{"categories":["Finance & Accounting"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.xero/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/xero/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Xero/xero.svg"},
|
|
@@ -456,7 +457,8 @@
|
|
|
456
457
|
{"displayName":"Zulip","name":"n8n-nodes-base.zulip","group":["output"],"version":1,"subtitle":"={{$parameter[\"operation\"] + \": \" + $parameter[\"resource\"]}}","description":"Consume Zulip API","defaults":{"name":"Zulip"},"inputs":["main"],"outputs":["main"],"credentials":[{"name":"zulipApi","required":true}],"properties":[{"displayName":"Resource","name":"resource","type":"options","noDataExpression":true,"options":[{"name":"Message","value":"message"},{"name":"Stream","value":"stream"},{"name":"User","value":"user"}],"default":"message"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["message"]}},"options":[{"name":"Delete","value":"delete","description":"Delete a message","action":"Delete a message"},{"name":"Get","value":"get","description":"Get a message","action":"Get a message"},{"name":"Send Private","value":"sendPrivate","description":"Send a private message","action":"Send a private message"},{"name":"Send to Stream","value":"sendStream","description":"Send a message to stream","action":"Send a message to a stream"},{"name":"Update","value":"update","description":"Update a message","action":"Update a message"},{"name":"Upload a File","value":"updateFile","action":"Upload a file"}],"default":"sendPrivate"},{"displayName":"To","name":"to","type":"multiOptions","typeOptions":{"loadOptionsMethod":"getUsers"},"required":true,"default":[],"displayOptions":{"show":{"resource":["message"],"operation":["sendPrivate"]}},"description":"The destination stream, or a comma-separated list containing the usernames (emails) of the recipients. Choose from the list, or specify IDs using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Content","name":"content","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["sendPrivate"]}},"description":"The content of the message"},{"displayName":"Stream Name or ID","name":"stream","type":"options","typeOptions":{"loadOptionsMethod":"getStreams"},"required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["sendStream"]}},"description":"The destination stream, or a comma-separated list containing the usernames (emails) of the recipients. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Topic Name or ID","name":"topic","type":"options","typeOptions":{"loadOptionsDependsOn":["stream"],"loadOptionsMethod":"getTopics"},"required":true,"displayOptions":{"show":{"resource":["message"],"operation":["sendStream"]}},"default":"","description":"The topic of the message. Only required if type is stream, ignored otherwise. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."},{"displayName":"Content","name":"content","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["sendStream"]}},"description":"The content of the message"},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["update"]}},"description":"Unique identifier for the message"},{"displayName":"Update Fields","name":"updateFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["message"],"operation":["update"]}},"options":[{"displayName":"Content","name":"content","type":"string","default":"","description":"The content of the message"},{"displayName":"Propagate Mode","name":"propagateMode","type":"options","options":[{"name":"Change One","value":"changeOne"},{"name":"Change Later","value":"changeLater"},{"name":"Change All","value":"changeAll"}],"default":"changeOne","description":"Which message(s) should be edited: just the one indicated in message_id, messages in the same topic that had been sent after this one, or all of them"},{"displayName":"Topic","name":"topic","type":"string","default":"","description":"The topic of the message. Only required for stream messages."}]},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["get"]}},"description":"Unique identifier for the message"},{"displayName":"Message ID","name":"messageId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["message"],"operation":["delete"]}},"description":"Unique identifier for the message"},{"displayName":"Put Output File in Field","name":"dataBinaryProperty","type":"string","required":true,"default":"data","displayOptions":{"show":{"resource":["message"],"operation":["updateFile"]}},"hint":"The name of the output binary field to put the file in"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["stream"]}},"options":[{"name":"Create","value":"create","description":"Create a stream","action":"Create a stream"},{"name":"Delete","value":"delete","description":"Delete a stream","action":"Delete a stream"},{"name":"Get Many","value":"getAll","description":"Get many streams","action":"Get many streams"},{"name":"Get Subscribed","value":"getSubscribed","description":"Get subscribed streams","action":"Get subscribed streams"},{"name":"Update","value":"update","description":"Update a stream","action":"Update a stream"}],"default":"create"},{"displayName":"JSON Parameters","name":"jsonParameters","type":"boolean","default":false,"displayOptions":{"show":{"resource":["stream"],"operation":["create"]}}},{"displayName":"Additional Fields","name":"additionalFieldsJson","type":"json","typeOptions":{"alwaysOpenEditWindow":true},"default":"","displayOptions":{"show":{"resource":["stream"],"operation":["create"],"jsonParameters":[true]}},"description":"JSON format parameters for stream creation"},{"displayName":"Subscriptions","name":"subscriptions","type":"fixedCollection","default":{},"displayOptions":{"show":{"resource":["stream"],"operation":["create"],"jsonParameters":[false]}},"required":true,"description":"A list of dictionaries containing the the key name and value specifying the name of the stream to subscribe. If the stream does not exist a new stream is created.","typeOptions":{"multipleValues":true},"options":[{"displayName":"Subscription Properties","name":"properties","values":[{"displayName":"Name","name":"name","type":"string","required":true,"default":"","description":"Name of Subscription"},{"displayName":"Description","name":"description","type":"string","required":true,"default":"","description":"Description of Subscription"}]}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["stream"],"operation":["create"],"jsonParameters":[false]}},"options":[{"displayName":"Announce","name":"announce","type":"boolean","default":false,"description":"If announce is True and one of the streams specified in subscriptions has to be created (i.e. doesnt exist to begin with), an announcement will be made notifying that a new stream was created."},{"displayName":"Authorization Errors Fatal","name":"authorizationErrorsFatal","type":"boolean","default":false,"description":"Whether authorization errors (such as when the requesting user is not authorized to access a private stream) should be considered fatal or not. When True, an authorization error is reported as such. When set to False, the returned JSON payload indicates that there was an authorization error, but the response is still considered a successful one."},{"displayName":"History Public to Subscribers","name":"historyPublicToSubscribers","type":"boolean","default":false,"description":"Whether the streams message history should be available to newly subscribed members, or users can only access messages they actually received while subscribed to the stream"},{"displayName":"Invite Only","name":"inviteOnly","type":"boolean","default":false,"description":"Whether the streams specified in subscriptions are invite-only or not"},{"displayName":"Principals","name":"principals","type":"fixedCollection","default":{},"description":"A list of email addresses of the users that will be subscribed/unsubscribed to the streams specified in the subscriptions argument. If not provided, then the requesting user/bot is subscribed.","typeOptions":{"multipleValues":true},"options":[{"displayName":"Principals Properties","name":"properties","values":[{"displayName":"Principal Email","name":"email","type":"string","placeholder":"name@email.com","required":true,"default":"","description":"Principal email address"}]}]},{"displayName":"Stream Post Policy","name":"streamPostPolicy","type":"options","default":"","description":"Policy for which users can post messages to the stream","options":[{"name":"1","value":1,"description":"Any user can post"},{"name":"2","value":2,"description":"Only administrators can post"},{"name":"3","value":3,"description":"Only new members can post"}]}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["stream"],"operation":["getAll"]}},"options":[{"displayName":"Include All Active","name":"includeAllActive","type":"boolean","default":true,"description":"Whether to include all active streams. The user must have administrative privileges to use this parameter."},{"displayName":"Include Default","name":"includeDefault","type":"boolean","default":true,"description":"Whether to include all default streams for the users realm"},{"displayName":"Include Owner Subscribed","name":"includeOwnersubscribed","type":"boolean","default":true,"description":"Whether the user is a bot, include all streams that the bots owner is subscribed to"},{"displayName":"Include Public","name":"includePublic","type":"boolean","default":true,"description":"Whether to include all public streams"},{"displayName":"Include Subscribed","name":"includeSubscribed","type":"boolean","default":true,"description":"Whether to include all streams that the user is subscribed to"}]},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["stream"],"operation":["getSubscribed"]}},"options":[{"displayName":"Include Subscribers","name":"includeSubscribers","type":"boolean","default":true,"description":"Whether each returned stream object should include a subscribers field containing a list of the user IDs of its subscribers"}]},{"displayName":"Stream ID","name":"streamId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["stream"],"operation":["update"]}},"description":"ID of stream to update"},{"displayName":"JSON Parameters","name":"jsonParameters","type":"boolean","default":false,"displayOptions":{"show":{"resource":["stream"],"operation":["update"]}}},{"displayName":"Additional Fields","name":"additionalFieldsJson","type":"json","typeOptions":{"alwaysOpenEditWindow":true},"default":"","displayOptions":{"show":{"resource":["stream"],"operation":["update"],"jsonParameters":[true]}},"description":"JSON format parameters for stream creation"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["stream"],"operation":["update"],"jsonParameters":[false]}},"options":[{"displayName":"Announcement Only","name":"isAnnouncementOnly","type":"boolean","default":false,"description":"Whether the stream is limited to announcements"},{"displayName":"Description","name":"description","type":"string","default":"","description":"The new description for the stream","placeholder":"Place of discussion"},{"displayName":"Is Private","name":"isPrivate","type":"boolean","default":false,"description":"Whether the stream is a private stream"},{"displayName":"History Public to Subscribers","name":"historyPublicToSubscribers","type":"boolean","default":false,"description":"Whether the streams message history should be available to newly subscribed members, or users can only access messages they actually received while subscribed to the stream"},{"displayName":"New Name","name":"newName","type":"string","default":"","description":"The new name for the stream","placeholder":"Italy"},{"displayName":"Stream Post Policy","name":"streamPostPolicy","type":"options","default":"","description":"Policy for which users can post messages to the stream","options":[{"name":"1","value":1,"description":"Any user can post"},{"name":"2","value":2,"description":"Only administrators can post"},{"name":"3","value":3,"description":"Only new members can post"}]}]},{"displayName":"Stream ID","name":"streamId","type":"string","required":true,"default":"","displayOptions":{"show":{"resource":["stream"],"operation":["delete"]}},"description":"ID of stream to delete"},{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"displayOptions":{"show":{"resource":["user"]}},"options":[{"name":"Create","value":"create","description":"Create a user","action":"Create a user"},{"name":"Deactivate","value":"deactivate","description":"Deactivate a user","action":"Deactivate a user"},{"name":"Get","value":"get","description":"Get a user","action":"Get a user"},{"name":"Get Many","value":"getAll","description":"Get many users","action":"Get many users"},{"name":"Update","value":"update","description":"Update a user","action":"Update a user"}],"default":"create"},{"displayName":"Email","name":"email","type":"string","placeholder":"name@email.com","required":true,"displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"default":"","description":"The email address of the new user"},{"displayName":"Full Name","name":"fullName","type":"string","required":true,"displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"default":"","description":"The full name of the new user"},{"displayName":"Password","name":"password","type":"string","typeOptions":{"password":true},"required":true,"displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"default":"","description":"The password of the new user"},{"displayName":"Short Name","name":"shortName","type":"string","required":true,"displayOptions":{"show":{"resource":["user"],"operation":["create"]}},"default":"","description":"The short name of the new user. Not user-visible."},{"displayName":"User ID","name":"userId","type":"string","required":true,"displayOptions":{"show":{"resource":["user"],"operation":["get"]}},"default":"","description":"The ID of user to get"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["get","getAll"]}},"options":[{"displayName":"Client Gravatar","name":"clientGravatar","type":"boolean","default":false,"description":"Whether the client supports computing gravatars URLs. If enabled, avatar_url will be included in the response only if there is a Zulip avatar, and will be null for users who are using gravatar as their avatar."},{"displayName":"Custom Profile Fields","name":"includeCustomProfileFields","type":"boolean","default":false,"description":"Whether the client wants custom profile field data to be included in the response"}]},{"displayName":"User ID","name":"userId","type":"string","required":true,"displayOptions":{"show":{"resource":["user"],"operation":["update"]}},"default":"","description":"The ID of user to update"},{"displayName":"Additional Fields","name":"additionalFields","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"resource":["user"],"operation":["update"]}},"options":[{"displayName":"Full Name","name":"fullName","type":"string","default":"","description":"The users full name"},{"displayName":"Is Admin","name":"isAdmin","type":"boolean","default":false,"description":"Whether the target user is an administrator"},{"displayName":"Is Guest","name":"isGuest","type":"boolean","default":false,"description":"Whether the target user is a guest"},{"displayName":"Profile Data","name":"profileData","type":"fixedCollection","default":{},"description":"A dictionary containing the to be updated custom profile field data for the user","typeOptions":{"multipleValues":true},"options":[{"displayName":"Property","name":"property","values":[{"displayName":"ID","name":"id","type":"string","required":true,"default":"","description":"ID of custom profile data value"},{"displayName":"Value","name":"value","type":"string","default":"","description":"Value of custom profile data"}]}]},{"displayName":"Role","name":"role","type":"options","options":[{"name":"Guest","value":600},{"name":"Member","value":400},{"name":"Organization Administrator","value":200},{"name":"Organization Moderator","value":300},{"name":"Organization Owner","value":100}],"default":"","description":"Role for the user"}]},{"displayName":"User ID","name":"userId","type":"string","required":true,"displayOptions":{"show":{"resource":["user"],"operation":["deactivate"]}},"default":"","description":"The ID of user to deactivate"}],"codex":{"categories":["Communication"],"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.zulip/"}],"credentialDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/credentials/zulip/"}]}},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Zulip/zulip.svg"},
|
|
457
458
|
{"displayName":"Aggregate","name":"n8n-nodes-base.aggregate","group":["transform"],"subtitle":"","version":1,"description":"Combine a field from many items into a list in a single item","defaults":{"name":"Aggregate"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Aggregate","name":"aggregate","type":"options","default":"aggregateIndividualFields","options":[{"name":"Individual Fields","value":"aggregateIndividualFields"},{"name":"All Item Data (Into a Single List)","value":"aggregateAllItemData"}]},{"displayName":"Fields To Aggregate","name":"fieldsToAggregate","type":"fixedCollection","typeOptions":{"multipleValues":true},"placeholder":"Add Field To Aggregate","default":{"fieldToAggregate":[{"fieldToAggregate":"","renameField":false}]},"displayOptions":{"show":{"aggregate":["aggregateIndividualFields"]}},"options":[{"displayName":"","name":"fieldToAggregate","values":[{"displayName":"Input Field Name","name":"fieldToAggregate","type":"string","default":"","description":"The name of a field in the input items to aggregate together","placeholder":"e.g. id","hint":" Enter the field name as text","requiresDataPath":"single"},{"displayName":"Rename Field","name":"renameField","type":"boolean","default":false,"description":"Whether to give the field a different name in the output"},{"displayName":"Output Field Name","name":"outputFieldName","displayOptions":{"show":{"renameField":[true]}},"type":"string","default":"","description":"The name of the field to put the aggregated data in. Leave blank to use the input field name.","requiresDataPath":"single"}]}]},{"displayName":"Put Output in Field","name":"destinationFieldName","type":"string","displayOptions":{"show":{"aggregate":["aggregateAllItemData"]}},"default":"data","description":"The name of the output field to put the data in"},{"displayName":"Include","name":"include","type":"options","default":"allFields","options":[{"name":"All Fields","value":"allFields"},{"name":"Specified Fields","value":"specifiedFields"},{"name":"All Fields Except","value":"allFieldsExcept"}],"displayOptions":{"show":{"aggregate":["aggregateAllItemData"]}}},{"displayName":"Fields To Exclude","name":"fieldsToExclude","type":"string","placeholder":"e.g. email, name","default":"","requiresDataPath":"multiple","displayOptions":{"show":{"aggregate":["aggregateAllItemData"],"include":["allFieldsExcept"]}}},{"displayName":"Fields To Include","name":"fieldsToInclude","type":"string","placeholder":"e.g. email, name","default":"","requiresDataPath":"multiple","displayOptions":{"show":{"aggregate":["aggregateAllItemData"],"include":["specifiedFields"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Disable Dot Notation","name":"disableDotNotation","type":"boolean","default":false,"description":"Whether to disallow referencing child fields using `parent.child` in the field name","displayOptions":{"hide":{"/aggregate":["aggregateAllItemData"]}}},{"displayName":"Merge Lists","name":"mergeLists","type":"boolean","default":false,"description":"Whether to merge the output into a single flat list (rather than a list of lists), if the field to aggregate is a list","displayOptions":{"hide":{"/aggregate":["aggregateAllItemData"]}}},{"displayName":"Include Binaries","name":"includeBinaries","type":"boolean","default":false,"description":"Whether to include the binary data in the new item"},{"displayName":"Keep Only Unique Binaries","name":"keepOnlyUnique","type":"boolean","default":false,"description":"Whether to keep only unique binaries by comparing mime types, file types, file sizes and file extensions","displayOptions":{"show":{"includeBinaries":[true]}}},{"displayName":"Keep Missing And Null Values","name":"keepMissing","type":"boolean","default":false,"description":"Whether to add a null entry to the aggregated list when there is a missing or null value","displayOptions":{"hide":{"/aggregate":["aggregateAllItemData"]}}}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.aggregate/"}]},"alias":["Aggregate","Combine","Flatten","Transform","Array","List","Item"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/Aggregate/aggregate.svg"},
|
|
458
459
|
{"displayName":"Limit","name":"n8n-nodes-base.limit","group":["transform"],"subtitle":"","version":1,"description":"Restrict the number of items","defaults":{"name":"Limit"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Max Items","name":"maxItems","type":"number","typeOptions":{"minValue":1},"default":1,"description":"If there are more items than this number, some are removed"},{"displayName":"Keep","name":"keep","type":"options","options":[{"name":"First Items","value":"firstItems"},{"name":"Last Items","value":"lastItems"}],"default":"firstItems","description":"When removing items, whether to keep the ones at the start or the ending"}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.limit/"}]},"alias":["Limit","Remove","Slice","Transform","Array","List","Item"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/Limit/limit.svg"},
|
|
459
|
-
{"displayName":"Remove Duplicates","name":"n8n-nodes-base.removeDuplicates","group":["transform"],"
|
|
460
|
+
{"displayName":"Remove Duplicates","name":"n8n-nodes-base.removeDuplicates","group":["transform"],"defaultVersion":2,"description":"Delete items with matching field values","subtitle":"","version":[1,1.1],"defaults":{"name":"Remove Duplicates"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Compare","name":"compare","type":"options","options":[{"name":"All Fields","value":"allFields"},{"name":"All Fields Except","value":"allFieldsExcept"},{"name":"Selected Fields","value":"selectedFields"}],"default":"allFields","description":"The fields of the input items to compare to see if they are the same"},{"displayName":"Fields To Exclude","name":"fieldsToExclude","type":"string","placeholder":"e.g. email, name","requiresDataPath":"multiple","description":"Fields in the input to exclude from the comparison","default":"","displayOptions":{"show":{"compare":["allFieldsExcept"]}}},{"displayName":"Fields To Compare","name":"fieldsToCompare","type":"string","placeholder":"e.g. email, name","requiresDataPath":"multiple","description":"Fields in the input to add to the comparison","default":"","displayOptions":{"show":{"compare":["selectedFields"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"compare":["allFieldsExcept","selectedFields"]}},"options":[{"displayName":"Disable Dot Notation","name":"disableDotNotation","type":"boolean","default":false,"description":"Whether to disallow referencing child fields using `parent.child` in the field name"},{"displayName":"Remove Other Fields","name":"removeOtherFields","type":"boolean","default":false,"description":"Whether to remove any fields that are not being compared. If disabled, will keep the values from the first of the duplicates."}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/RemoveDuplicates/removeDuplicates.svg","codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates/"}]},"alias":["Dedupe","Deduplicate","Duplicates","Remove","Unique","Transform","Array","List","Item"]}},
|
|
461
|
+
{"displayName":"Remove Duplicates","name":"n8n-nodes-base.removeDuplicates","group":["transform"],"defaultVersion":2,"description":"Delete items with matching field values","subtitle":"","version":[2],"defaults":{"name":"Remove Duplicates"},"inputs":["main"],"outputs":["main"],"outputNames":["Kept","Discarded"],"hints":[{"message":"The dedupe key set in “Value to Dedupe On” has no value","displayCondition":"={{ $parameter[\"operation\"] === \"removeItemsSeenInPreviousExecutions\" && ($parameter[\"logic\"] === \"removeItemsWithAlreadySeenKeyValues\" && $parameter[\"dedupeValue\"] === undefined) || ($parameter[\"logic\"] === \"removeItemsUpToStoredIncrementalKey\" && $parameter[\"incrementalDedupeValue\"] === undefined) || ($parameter[\"logic\"] === \"removeItemsUpToStoredDate\" && $parameter[\"dateDedupeValue\"] === undefined) }}","whenToDisplay":"beforeExecution","location":"outputPane"}],"properties":[{"displayName":"Operation","name":"operation","type":"options","noDataExpression":true,"options":[{"name":"Remove Items Repeated Within Current Input","value":"removeDuplicateInputItems","description":"Remove duplicates from incoming items","action":"Remove items repeated within current input"},{"name":"Remove Items Processed in Previous Executions","value":"removeItemsSeenInPreviousExecutions","description":"Deduplicate items already seen in previous executions","action":"Remove items processed in previous executions"},{"name":"Clear Deduplication History","value":"clearDeduplicationHistory","description":"Wipe the store of previous items","action":"Clear deduplication history"}],"default":"removeDuplicateInputItems"},{"displayName":"Compare","name":"compare","type":"options","options":[{"name":"All Fields","value":"allFields"},{"name":"All Fields Except","value":"allFieldsExcept"},{"name":"Selected Fields","value":"selectedFields"}],"default":"allFields","description":"The fields of the input items to compare to see if they are the same","displayOptions":{"show":{"operation":["removeDuplicateInputItems"]}}},{"displayName":"Fields To Exclude","name":"fieldsToExclude","type":"string","placeholder":"e.g. email, name","requiresDataPath":"multiple","description":"Fields in the input to exclude from the comparison","default":"","displayOptions":{"show":{"compare":["allFieldsExcept"]}}},{"displayName":"Fields To Compare","name":"fieldsToCompare","type":"string","placeholder":"e.g. email, name","requiresDataPath":"multiple","description":"Fields in the input to add to the comparison","default":"","displayOptions":{"show":{"compare":["selectedFields"]}}},{"displayName":"Keep Items Where","name":"logic","type":"options","noDataExpression":true,"options":[{"name":"Value Is New","value":"removeItemsWithAlreadySeenKeyValues","description":"Remove all input items with values matching those already processed"},{"name":"Value Is Higher than Any Previous Value","value":"removeItemsUpToStoredIncrementalKey","description":"Works with incremental values, removes all input items with values up to the stored value"},{"name":"Value Is a Date Later than Any Previous Date","value":"removeItemsUpToStoredDate","description":"Works with date values, removes all input items with values up to the stored date"}],"default":"removeItemsWithAlreadySeenKeyValues","description":"How to select input items to remove by comparing them with key values previously processed","displayOptions":{"show":{"operation":["removeItemsSeenInPreviousExecutions"]}}},{"displayName":"Value to Dedupe On","name":"dedupeValue","type":"string","default":"","description":"Use an input field (or a combination of fields) that has a unique ID value","hint":"The input field value to compare between items","placeholder":"e.g. ID","required":true,"displayOptions":{"show":{"logic":["removeItemsWithAlreadySeenKeyValues"],"/operation":["removeItemsSeenInPreviousExecutions"]}}},{"displayName":"Value to Dedupe On","name":"incrementalDedupeValue","type":"number","default":"","description":"Use an input field (or a combination of fields) that has an incremental value","hint":"The input field value to compare between items, an incremental value is expected","placeholder":"e.g. ID","displayOptions":{"show":{"logic":["removeItemsUpToStoredIncrementalKey"],"/operation":["removeItemsSeenInPreviousExecutions"]}}},{"displayName":"Value to Dedupe On","name":"dateDedupeValue","type":"dateTime","default":"","description":"Use an input field that has a date value in ISO format","hint":"The input field value to compare between items, a date is expected","placeholder":" e.g. 2024-08-09T13:44:16Z","displayOptions":{"show":{"logic":["removeItemsUpToStoredDate"],"/operation":["removeItemsSeenInPreviousExecutions"]}}},{"displayName":"Mode","name":"mode","type":"options","default":"cleanDatabase","description":"How you want to modify the key values stored on the database. None of these modes removes input items.","displayOptions":{"show":{"operation":["clearDeduplicationHistory"]}},"options":[{"name":"Clean Database","value":"cleanDatabase","description":"Clear all values stored for a key in the database"}]},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"operation":["removeDuplicateInputItems","removeItemsSeenInPreviousExecutions","clearDeduplicationHistory"]}},"options":[{"displayName":"Disable Dot Notation","name":"disableDotNotation","type":"boolean","default":false,"displayOptions":{"show":{"/operation":["removeDuplicateInputItems"]},"hide":{"/compare":["allFields"]}},"description":"Whether to disallow referencing child fields using `parent.child` in the field name"},{"displayName":"Remove Other Fields","name":"removeOtherFields","type":"boolean","default":false,"displayOptions":{"show":{"/operation":["removeDuplicateInputItems"]},"hide":{"/compare":["allFields"]}},"description":"Whether to remove any fields that are not being compared. If disabled, will keep the values from the first of the duplicates."},{"displayName":"Scope","name":"scope","type":"options","default":"node","displayOptions":{"show":{"/operation":["clearDeduplicationHistory","removeItemsSeenInPreviousExecutions"]}},"description":"If set to ‘workflow,’ key values will be shared across all nodes in the workflow. If set to ‘node,’ key values will be specific to this node.","options":[{"name":"Workflow","value":"workflow","description":"Deduplication info will be shared by all the nodes in the workflow"},{"name":"Node","value":"node","description":"Deduplication info will be stored only for this node"}]},{"displayName":"History Size","name":"historySize","type":"number","default":10000,"hint":"The max number of past items to store for deduplication","displayOptions":{"show":{"/logic":["removeItemsWithAlreadySeenKeyValues"],"/operation":["removeItemsSeenInPreviousExecutions"]}}}]}],"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/RemoveDuplicates/removeDuplicates.svg","codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.removeduplicates/"}]},"alias":["Dedupe","Deduplicate","Duplicates","Remove","Unique","Transform","Array","List","Item"]}},
|
|
460
462
|
{"displayName":"Split Out","name":"n8n-nodes-base.splitOut","group":["transform"],"subtitle":"","version":1,"description":"Turn a list inside item(s) into separate items","defaults":{"name":"Split Out"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Fields To Split Out","name":"fieldToSplitOut","type":"string","default":"","required":true,"placeholder":"Drag fields from the left or type their names","description":"The name of the input fields to break out into separate items. Separate multiple field names by commas. For binary data, use $binary.","requiresDataPath":"multiple"},{"displayName":"Include","name":"include","type":"options","options":[{"name":"No Other Fields","value":"noOtherFields"},{"name":"All Other Fields","value":"allOtherFields"},{"name":"Selected Other Fields","value":"selectedOtherFields"}],"default":"noOtherFields","description":"Whether to copy any other fields into the new items"},{"displayName":"Fields To Include","name":"fieldsToInclude","type":"string","placeholder":"e.g. email, name","requiresDataPath":"multiple","description":"Fields in the input items to aggregate together","default":"","displayOptions":{"show":{"include":["selectedOtherFields"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"options":[{"displayName":"Disable Dot Notation","name":"disableDotNotation","type":"boolean","default":false,"description":"Whether to disallow referencing child fields using `parent.child` in the field name"},{"displayName":"Destination Field Name","name":"destinationFieldName","type":"string","requiresDataPath":"multiple","default":"","description":"The field in the output under which to put the split field contents"},{"displayName":"Include Binary","name":"includeBinary","type":"boolean","default":false,"description":"Whether to include the binary data in the new items"}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.splitout/"}]},"alias":["Split","Nested","Transform","Array","List","Item"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/SplitOut/splitOut.svg"},
|
|
461
463
|
{"displayName":"Sort","name":"n8n-nodes-base.sort","group":["transform"],"subtitle":"","version":1,"description":"Change items order","defaults":{"name":"Sort"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Type","name":"type","type":"options","options":[{"name":"Simple","value":"simple"},{"name":"Random","value":"random"},{"name":"Code","value":"code"}],"default":"simple","description":"The fields of the input items to compare to see if they are the same"},{"displayName":"Fields To Sort By","name":"sortFieldsUi","type":"fixedCollection","typeOptions":{"multipleValues":true},"placeholder":"Add Field To Sort By","options":[{"displayName":"","name":"sortField","values":[{"displayName":"Field Name","name":"fieldName","type":"string","required":true,"default":"","description":"The field to sort by","placeholder":"e.g. id","hint":" Enter the field name as text","requiresDataPath":"single"},{"displayName":"Order","name":"order","type":"options","options":[{"name":"Ascending","value":"ascending"},{"name":"Descending","value":"descending"}],"default":"ascending","description":"The order to sort by"}]}],"default":{},"description":"The fields of the input items to compare to see if they are the same","displayOptions":{"show":{"type":["simple"]}}},{"displayName":"Code","name":"code","type":"string","typeOptions":{"alwaysOpenEditWindow":true,"editor":"jsEditor","rows":10},"default":"// The two items to compare are in the variables a and b\n\t// Access the fields in a.json and b.json\n\t// Return -1 if a should go before b\n\t// Return 1 if b should go before a\n\t// Return 0 if there's no difference\n\n\tfieldName = 'myField';\n\n\tif (a.json[fieldName] < b.json[fieldName]) {\n\treturn -1;\n\t}\n\tif (a.json[fieldName] > b.json[fieldName]) {\n\treturn 1;\n\t}\n\treturn 0;","description":"Javascript code to determine the order of any two items","displayOptions":{"show":{"type":["code"]}}},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add Field","default":{},"displayOptions":{"show":{"type":["simple"]}},"options":[{"displayName":"Disable Dot Notation","name":"disableDotNotation","type":"boolean","default":false,"description":"Whether to disallow referencing child fields using `parent.child` in the field name"}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.sort/"}]},"alias":["Sort","Order","Transform","Array","List","Item","Random"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/Sort/sort.svg"},
|
|
462
464
|
{"displayName":"Summarize","name":"n8n-nodes-base.summarize","group":["transform"],"subtitle":"","version":1,"description":"Sum, count, max, etc. across items","defaults":{"name":"Summarize"},"inputs":["main"],"outputs":["main"],"properties":[{"displayName":"Fields to Summarize","name":"fieldsToSummarize","type":"fixedCollection","placeholder":"Add Field","default":{"values":[{"aggregation":"count","field":""}]},"typeOptions":{"multipleValues":true},"options":[{"displayName":"","name":"values","values":[{"displayName":"Aggregation","name":"aggregation","type":"options","options":[{"name":"Append","value":"append"},{"name":"Average","value":"average"},{"name":"Concatenate","value":"concatenate"},{"name":"Count","value":"count"},{"name":"Count Unique","value":"countUnique"},{"name":"Max","value":"max"},{"name":"Min","value":"min"},{"name":"Sum","value":"sum"}],"default":"count","description":"How to combine the values of the field you want to summarize"},{"displayName":"Field","name":"field","type":"string","default":"","description":"The name of an input field that you want to summarize","placeholder":"e.g. cost","hint":" Enter the field name as text","displayOptions":{"hide":{"aggregation":["average","sum","countUnique","count","max","min"]}},"requiresDataPath":"single"},{"displayName":"Field","name":"field","type":"string","default":"","description":"The name of an input field that you want to summarize. The field should contain numerical values; null, undefined, empty strings would be ignored.","placeholder":"e.g. cost","hint":" Enter the field name as text","displayOptions":{"show":{"aggregation":["average","sum"]}},"requiresDataPath":"single"},{"displayName":"Field","name":"field","type":"string","default":"","description":"The name of an input field that you want to summarize; null, undefined, empty strings would be ignored","placeholder":"e.g. cost","hint":" Enter the field name as text","displayOptions":{"show":{"aggregation":["countUnique","count","max","min"]}},"requiresDataPath":"single"},{"displayName":"Include Empty Values","name":"includeEmpty","type":"boolean","default":false,"displayOptions":{"show":{"aggregation":["append","concatenate"]}}},{"displayName":"Separator","name":"separateBy","type":"options","default":",","options":[{"name":"Comma","value":","},{"name":"Comma and Space","value":", "},{"name":"New Line","value":"\n"},{"name":"None","value":""},{"name":"Space","value":" "},{"name":"Other","value":"other"}],"hint":"What to insert between values","displayOptions":{"show":{"aggregation":["concatenate"]}}},{"displayName":"Custom Separator","name":"customSeparator","type":"string","default":"","displayOptions":{"show":{"aggregation":["concatenate"],"separateBy":["other"]}}}]}]},{"displayName":"Fields to Split By","name":"fieldsToSplitBy","type":"string","placeholder":"e.g. country, city","default":"","description":"The name of the input fields that you want to split the summary by","hint":"Enter the name of the fields as text (separated by commas)","displayOptions":{"hide":{"/options.outputFormat":["singleItem"]}},"requiresDataPath":"multiple"},{"displayName":"Fields to Group By","name":"fieldsToSplitBy","type":"string","placeholder":"e.g. country, city","default":"","description":"The name of the input fields that you want to split the summary by","hint":"Enter the name of the fields as text (separated by commas)","displayOptions":{"show":{"/options.outputFormat":["singleItem"]}},"requiresDataPath":"multiple"},{"displayName":"Options","name":"options","type":"collection","placeholder":"Add option","default":{},"options":[{"displayName":"Continue if Field Not Found","name":"continueIfFieldNotFound","type":"boolean","default":false,"description":"Whether to continue if field to summarize can't be found in any items and return single empty item, owerwise an error would be thrown"},{"displayName":"Disable Dot Notation","name":"disableDotNotation","type":"boolean","default":false,"description":"Whether to disallow referencing child fields using `parent.child` in the field name"},{"displayName":"Output Format","name":"outputFormat","type":"options","default":"separateItems","options":[{"name":"Each Split in a Separate Item","value":"separateItems"},{"name":"All Splits in a Single Item","value":"singleItem"}]},{"displayName":"Ignore items without valid fields to group by","name":"skipEmptySplitFields","type":"boolean","default":false}]}],"codex":{"categories":["Core Nodes"],"subcategories":{"Core Nodes":["Data Transformation"]},"resources":{"primaryDocumentation":[{"url":"https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.summarize/"}]},"alias":["Append","Array","Average","Concatenate","Count","Group","Item","List","Max","Min","Pivot","Sum","Summarise","Summarize","Transform","Unique"]},"iconUrl":"icons/n8n-nodes-base/dist/nodes/Transform/Summarize/summarize.svg"}
|