n8n-workflow-builder-mcp 0.1.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/.cursor/rules/cursor_rules.mdc +53 -0
- package/.cursor/rules/dev_workflow.mdc +219 -0
- package/.cursor/rules/mcp.mdc +430 -0
- package/.cursor/rules/self_improve.mdc +72 -0
- package/.cursor/rules/taskmaster.mdc +382 -0
- package/.cursorignore +1 -0
- package/.cursorrules +4 -0
- package/.env.example +23 -0
- package/.eslintrc.json +38 -0
- package/.github/workflows/npm-publish-github-packages.yml +55 -0
- package/.prettierrc +9 -0
- package/.roo/rules/dev_workflow.md +219 -0
- package/.roo/rules/mcp.md +430 -0
- package/.roo/rules/roo_rules.md +53 -0
- package/.roo/rules/self_improve.md +72 -0
- package/.roo/rules/taskmaster.md +382 -0
- package/.roo/rules-architect/architect-rules +93 -0
- package/.roo/rules-ask/ask-rules +89 -0
- package/.roo/rules-boomerang/boomerang-rules +181 -0
- package/.roo/rules-code/code-rules +61 -0
- package/.roo/rules-debug/debug-rules +68 -0
- package/.roo/rules-test/test-rules +61 -0
- package/.roomodes +63 -0
- package/.taskmasterconfig +31 -0
- package/.windsurfrules +2382 -0
- package/LICENSE +21 -0
- package/README.md +210 -0
- package/config/credentials/credentials.json +1 -0
- package/config/default.js +41 -0
- package/package.json +56 -0
- package/scripts/demo-n8n-integration.js +161 -0
- package/scripts/demo-workflow-generator.js +102 -0
- package/scripts/init.sh +36 -0
- package/scripts/prd.txt +197 -0
- package/src/index.ts +1440 -0
- package/src/middleware/auth.js +273 -0
- package/src/middleware/authorize.js +183 -0
- package/src/middleware/logging.js +64 -0
- package/src/middleware/mcp.js +187 -0
- package/src/middleware/rateLimiter.js +82 -0
- package/src/middleware/validation.js +241 -0
- package/src/models/credential.js +359 -0
- package/src/models/llmService.js +236 -0
- package/src/models/n8nIntegration.js +542 -0
- package/src/models/storage.js +196 -0
- package/src/models/tool.js +148 -0
- package/src/models/user.js +164 -0
- package/src/models/workflow.js +229 -0
- package/src/routes/toolDefinitions.js +62 -0
- package/src/routes/toolExecution.js +79 -0
- package/src/tools/__index.js +242 -0
- package/src/tools/connectionManagement.js +500 -0
- package/src/tools/n8nIntegration.js +370 -0
- package/src/tools/nodeDiscovery.js +488 -0
- package/src/tools/nodeManagement.js +674 -0
- package/src/tools/toolDefinitions.js +660 -0
- package/src/tools/workflowCreation.js +100 -0
- package/src/tools/workflowGenerator.js +152 -0
- package/src/tools/workflowStorage.js +113 -0
- package/src/tools/workflowTesting.js +285 -0
- package/src/utils/encryption.js +164 -0
- package/src/utils/logger.js +84 -0
- package/src/utils/mcp.js +85 -0
- package/src/utils/securityLogger.js +109 -0
- package/tests/auth.test.js +402 -0
- package/tests/authorize.test.js +208 -0
- package/tests/run-memory-tests.js +55 -0
- package/tests/run-tests.js +55 -0
- package/tests/server.test.js +203 -0
- package/tests/unit/add-ai-connections.test.js +385 -0
- package/tests/unit/connectionManagement.test.js +309 -0
- package/tests/unit/langchain-llm-format.test.js +259 -0
- package/tests/unit/memory-connection.test.js +140 -0
- package/tests/unit/memory-integration.test.js +253 -0
- package/tests/unit/n8nIntegration.test.js +291 -0
- package/tests/unit/nodeDiscovery.test.js +270 -0
- package/tests/unit/nodeManagement.test.js +522 -0
- package/tests/unit/utils/mcp-test-utils.js +94 -0
- package/tests/unit/workflowCreation.test.js +110 -0
- package/tests/unit/workflowTesting.test.js +269 -0
- package/tests/user.test.js +181 -0
- package/tsconfig.json +20 -0
- package/workflow_nodes/Brandfetch.json +85 -0
- package/workflow_nodes/WorkflowTrigger.json +28 -0
- package/workflow_nodes/actionNetwork.json +218 -0
- package/workflow_nodes/activeCampaign.json +722 -0
- package/workflow_nodes/activeCampaignTrigger.json +52 -0
- package/workflow_nodes/acuitySchedulingTrigger.json +8 -0
- package/workflow_nodes/adalo.json +123 -0
- package/workflow_nodes/affinity.json +203 -0
- package/workflow_nodes/affinityTrigger.json +124 -0
- package/workflow_nodes/aggregate.json +119 -0
- package/workflow_nodes/agileCrm.json +503 -0
- package/workflow_nodes/aiTransform.json +17 -0
- package/workflow_nodes/airtable.json +226 -0
- package/workflow_nodes/airtableTrigger.json +120 -0
- package/workflow_nodes/airtop.json +10 -0
- package/workflow_nodes/amqp.json +62 -0
- package/workflow_nodes/amqpTrigger.json +8 -0
- package/workflow_nodes/apiTemplateIo.json +147 -0
- package/workflow_nodes/asana.json +446 -0
- package/workflow_nodes/asanaTrigger.json +52 -0
- package/workflow_nodes/automizy.json +195 -0
- package/workflow_nodes/autopilot.json +287 -0
- package/workflow_nodes/autopilotTrigger.json +8 -0
- package/workflow_nodes/awsCertificateManager.json +223 -0
- package/workflow_nodes/awsComprehend.json +125 -0
- package/workflow_nodes/awsDynamoDb.json +251 -0
- package/workflow_nodes/awsElb.json +174 -0
- package/workflow_nodes/awsLambda.json +69 -0
- package/workflow_nodes/awsRekognition.json +191 -0
- package/workflow_nodes/awsS3.json +32 -0
- package/workflow_nodes/awsSes.json +302 -0
- package/workflow_nodes/awsSns.json +110 -0
- package/workflow_nodes/awsSnsTrigger.json +47 -0
- package/workflow_nodes/awsSqs.json +140 -0
- package/workflow_nodes/awsTextract.json +43 -0
- package/workflow_nodes/awsTranscribe.json +217 -0
- package/workflow_nodes/azureCosmosDb.json +8 -0
- package/workflow_nodes/azureStorage.json +17 -0
- package/workflow_nodes/bambooHr.json +8 -0
- package/workflow_nodes/bannerbear.json +126 -0
- package/workflow_nodes/baserow.json +277 -0
- package/workflow_nodes/beeminder.json +146 -0
- package/workflow_nodes/bitbucketTrigger.json +62 -0
- package/workflow_nodes/bitly.json +130 -0
- package/workflow_nodes/bitwarden.json +224 -0
- package/workflow_nodes/box.json +457 -0
- package/workflow_nodes/boxTrigger.json +8 -0
- package/workflow_nodes/brevo.json +41 -0
- package/workflow_nodes/brevoTrigger.json +145 -0
- package/workflow_nodes/bubble.json +212 -0
- package/workflow_nodes/calTrigger.json +91 -0
- package/workflow_nodes/calendlyTrigger.json +71 -0
- package/workflow_nodes/chargebee.json +217 -0
- package/workflow_nodes/chargebeeTrigger.json +187 -0
- package/workflow_nodes/circleCi.json +89 -0
- package/workflow_nodes/ciscoWebex.json +593 -0
- package/workflow_nodes/ciscoWebexTrigger.json +159 -0
- package/workflow_nodes/clearbit.json +138 -0
- package/workflow_nodes/clickUp.json +793 -0
- package/workflow_nodes/clickUpTrigger.json +188 -0
- package/workflow_nodes/clockify.json +372 -0
- package/workflow_nodes/clockifyTrigger.json +26 -0
- package/workflow_nodes/cloudflare.json +103 -0
- package/workflow_nodes/cockpit.json +161 -0
- package/workflow_nodes/coda.json +242 -0
- package/workflow_nodes/code.json +40 -0
- package/workflow_nodes/coinGecko.json +363 -0
- package/workflow_nodes/compareDatasets.json +14 -0
- package/workflow_nodes/compression.json +66 -0
- package/workflow_nodes/contentful.json +29 -0
- package/workflow_nodes/convertKit.json +159 -0
- package/workflow_nodes/convertKitTrigger.json +109 -0
- package/workflow_nodes/convertToFile.json +64 -0
- package/workflow_nodes/copper.json +239 -0
- package/workflow_nodes/copperTrigger.json +8 -0
- package/workflow_nodes/cortex.json +348 -0
- package/workflow_nodes/crateDb.json +90 -0
- package/workflow_nodes/cron.json +23 -0
- package/workflow_nodes/crowdDev.json +8 -0
- package/workflow_nodes/crowdDevTrigger.json +8 -0
- package/workflow_nodes/crypto.json +147 -0
- package/workflow_nodes/customerIo.json +206 -0
- package/workflow_nodes/customerIoTrigger.json +185 -0
- package/workflow_nodes/dateTime.json +39 -0
- package/workflow_nodes/debughelper.json +162 -0
- package/workflow_nodes/deepL.json +103 -0
- package/workflow_nodes/demio.json +187 -0
- package/workflow_nodes/dhl.json +53 -0
- package/workflow_nodes/discord.json +81 -0
- package/workflow_nodes/discourse.json +319 -0
- package/workflow_nodes/disqus.json +254 -0
- package/workflow_nodes/drift.json +112 -0
- package/workflow_nodes/dropbox.json +258 -0
- package/workflow_nodes/dropcontact.json +154 -0
- package/workflow_nodes/e2eTest.json +70 -0
- package/workflow_nodes/editImage.json +132 -0
- package/workflow_nodes/egoi.json +220 -0
- package/workflow_nodes/elasticSecurity.json +401 -0
- package/workflow_nodes/elasticsearch.json +422 -0
- package/workflow_nodes/emailReadImap.json +88 -0
- package/workflow_nodes/emailSend.json +38 -0
- package/workflow_nodes/emelia.json +201 -0
- package/workflow_nodes/emeliaTrigger.json +57 -0
- package/workflow_nodes/erpNext.json +139 -0
- package/workflow_nodes/errorTrigger.json +15 -0
- package/workflow_nodes/evaluationMetrics.json +21 -0
- package/workflow_nodes/eventbriteTrigger.json +125 -0
- package/workflow_nodes/executeCommand.json +25 -0
- package/workflow_nodes/executeWorkflow.json +102 -0
- package/workflow_nodes/executeWorkflowTrigger.json +65 -0
- package/workflow_nodes/executionData.json +35 -0
- package/workflow_nodes/extractFromFile.json +71 -0
- package/workflow_nodes/facebookGraphApi.json +234 -0
- package/workflow_nodes/facebookLeadAdsTrigger.json +8 -0
- package/workflow_nodes/facebookTrigger.json +112 -0
- package/workflow_nodes/figmaTrigger.json +8 -0
- package/workflow_nodes/filemaker.json +268 -0
- package/workflow_nodes/filter.json +24 -0
- package/workflow_nodes/flow.json +323 -0
- package/workflow_nodes/flowTrigger.json +52 -0
- package/workflow_nodes/form.json +25 -0
- package/workflow_nodes/formIoTrigger.json +59 -0
- package/workflow_nodes/formTrigger.json +8 -0
- package/workflow_nodes/formstackTrigger.json +8 -0
- package/workflow_nodes/freshdesk.json +584 -0
- package/workflow_nodes/freshservice.json +899 -0
- package/workflow_nodes/freshworksCrm.json +772 -0
- package/workflow_nodes/ftp.json +127 -0
- package/workflow_nodes/function.json +22 -0
- package/workflow_nodes/functionItem.json +22 -0
- package/workflow_nodes/gSuiteAdmin.json +562 -0
- package/workflow_nodes/getResponse.json +310 -0
- package/workflow_nodes/getResponseTrigger.json +82 -0
- package/workflow_nodes/ghost.json +290 -0
- package/workflow_nodes/git.json +184 -0
- package/workflow_nodes/github.json +732 -0
- package/workflow_nodes/githubTrigger.json +317 -0
- package/workflow_nodes/gitlab.json +544 -0
- package/workflow_nodes/gitlabTrigger.json +61 -0
- package/workflow_nodes/gmail.json +62 -0
- package/workflow_nodes/gmailTrigger.json +127 -0
- package/workflow_nodes/goToWebinar.json +430 -0
- package/workflow_nodes/gong.json +22 -0
- package/workflow_nodes/googleAds.json +116 -0
- package/workflow_nodes/googleAnalytics.json +28 -0
- package/workflow_nodes/googleBigQuery.json +38 -0
- package/workflow_nodes/googleBooks.json +154 -0
- package/workflow_nodes/googleBusinessProfile.json +277 -0
- package/workflow_nodes/googleBusinessProfileTrigger.json +55 -0
- package/workflow_nodes/googleCalendar.json +474 -0
- package/workflow_nodes/googleCalendarTrigger.json +72 -0
- package/workflow_nodes/googleChat.json +187 -0
- package/workflow_nodes/googleCloudNaturalLanguage.json +171 -0
- package/workflow_nodes/googleCloudStorage.json +466 -0
- package/workflow_nodes/googleContacts.json +481 -0
- package/workflow_nodes/googleDocs.json +312 -0
- package/workflow_nodes/googleDrive.json +920 -0
- package/workflow_nodes/googleDriveTrigger.json +181 -0
- package/workflow_nodes/googleFirebaseCloudFirestore.json +156 -0
- package/workflow_nodes/googleFirebaseRealtimeDatabase.json +75 -0
- package/workflow_nodes/googlePerspective.json +94 -0
- package/workflow_nodes/googleSheets.json +98 -0
- package/workflow_nodes/googleSheetsTrigger.json +192 -0
- package/workflow_nodes/googleSlides.json +186 -0
- package/workflow_nodes/googleTasks.json +198 -0
- package/workflow_nodes/googleTranslate.json +80 -0
- package/workflow_nodes/gotify.json +110 -0
- package/workflow_nodes/grafana.json +155 -0
- package/workflow_nodes/graphql.json +165 -0
- package/workflow_nodes/grist.json +13 -0
- package/workflow_nodes/gumroadTrigger.json +8 -0
- package/workflow_nodes/hackerNews.json +100 -0
- package/workflow_nodes/haloPSA.json +286 -0
- package/workflow_nodes/harvest.json +699 -0
- package/workflow_nodes/helpScout.json +629 -0
- package/workflow_nodes/helpScoutTrigger.json +8 -0
- package/workflow_nodes/highLevel.json +8 -0
- package/workflow_nodes/homeAssistant.json +201 -0
- package/workflow_nodes/html.json +118 -0
- package/workflow_nodes/htmlExtract.json +87 -0
- package/workflow_nodes/httpRequest.json +472 -0
- package/workflow_nodes/hubspot.json +62 -0
- package/workflow_nodes/hubspotTrigger.json +138 -0
- package/workflow_nodes/humanticAi.json +82 -0
- package/workflow_nodes/hunter.json +168 -0
- package/workflow_nodes/iCal.json +20 -0
- package/workflow_nodes/if.json +24 -0
- package/workflow_nodes/intercom.json +335 -0
- package/workflow_nodes/interval.json +8 -0
- package/workflow_nodes/invoiceNinja.json +882 -0
- package/workflow_nodes/invoiceNinjaTrigger.json +11 -0
- package/workflow_nodes/itemLists.json +313 -0
- package/workflow_nodes/iterable.json +168 -0
- package/workflow_nodes/jenkins.json +172 -0
- package/workflow_nodes/jira.json +529 -0
- package/workflow_nodes/jiraTrigger.json +308 -0
- package/workflow_nodes/jotFormTrigger.json +44 -0
- package/workflow_nodes/jwt.json +195 -0
- package/workflow_nodes/kafka.json +132 -0
- package/workflow_nodes/kafkaTrigger.json +11 -0
- package/workflow_nodes/keap.json +915 -0
- package/workflow_nodes/keapTrigger.json +37 -0
- package/workflow_nodes/kitemaker.json +153 -0
- package/workflow_nodes/koBoToolbox.json +337 -0
- package/workflow_nodes/koBoToolboxTrigger.json +8 -0
- package/workflow_nodes/langchain_Summarization Chain.json +60 -0
- package/workflow_nodes/langchain_agent.json +145 -0
- package/workflow_nodes/langchain_allowFileUploads.json +180 -0
- package/workflow_nodes/langchain_chainLlm.json +16 -0
- package/workflow_nodes/langchain_chainSummarization.json +119 -0
- package/workflow_nodes/langchain_code.json +62 -0
- package/workflow_nodes/langchain_documentBinaryInputLoader.json +8 -0
- package/workflow_nodes/langchain_documentDefaultDataLoader.json +8 -0
- package/workflow_nodes/langchain_documentGithubLoader.json +8 -0
- package/workflow_nodes/langchain_documentJsonInputLoader.json +8 -0
- package/workflow_nodes/langchain_embeddingDimensions.json +17 -0
- package/workflow_nodes/langchain_embeddingsAwsBedrock.json +8 -0
- package/workflow_nodes/langchain_embeddingsAzureOpenAi.json +151 -0
- package/workflow_nodes/langchain_embeddingsCohere.json +8 -0
- package/workflow_nodes/langchain_embeddingsGoogleGemini.json +8 -0
- package/workflow_nodes/langchain_embeddingsGoogleVertex.json +8 -0
- package/workflow_nodes/langchain_embeddingsHuggingFaceInference.json +8 -0
- package/workflow_nodes/langchain_embeddingsMistralCloud.json +8 -0
- package/workflow_nodes/langchain_embeddingsOllama.json +8 -0
- package/workflow_nodes/langchain_informationExtractor.json +81 -0
- package/workflow_nodes/langchain_lmChatAwsBedrock.json +8 -0
- package/workflow_nodes/langchain_lmChatAzureOpenAi.json +151 -0
- package/workflow_nodes/langchain_lmChatDeepSeek.json +10 -0
- package/workflow_nodes/langchain_lmChatGoogleGemini.json +31 -0
- package/workflow_nodes/langchain_lmChatGoogleVertex.json +32 -0
- package/workflow_nodes/langchain_lmChatGroq.json +8 -0
- package/workflow_nodes/langchain_lmChatMistralCloud.json +8 -0
- package/workflow_nodes/langchain_lmChatOllama.json +8 -0
- package/workflow_nodes/langchain_lmChatOpenAi.json +155 -0
- package/workflow_nodes/langchain_lmChatOpenRouter.json +10 -0
- package/workflow_nodes/langchain_lmChatXAiGrok.json +10 -0
- package/workflow_nodes/langchain_lmCohere.json +8 -0
- package/workflow_nodes/langchain_lmOllama.json +8 -0
- package/workflow_nodes/langchain_lmOpenAi.json +251 -0
- package/workflow_nodes/langchain_lmOpenHuggingFaceInference.json +8 -0
- package/workflow_nodes/langchain_manualChatTrigger.json +11 -0
- package/workflow_nodes/langchain_mcpClientTool.json +86 -0
- package/workflow_nodes/langchain_mcpTrigger.json +8 -0
- package/workflow_nodes/langchain_memoryBufferWindow.json +13 -0
- package/workflow_nodes/langchain_memoryChatRetriever.json +22 -0
- package/workflow_nodes/langchain_memoryManager.json +106 -0
- package/workflow_nodes/langchain_memoryMongoDbChat.json +10 -0
- package/workflow_nodes/langchain_memoryMotorhead.json +13 -0
- package/workflow_nodes/langchain_memoryPostgresChat.json +13 -0
- package/workflow_nodes/langchain_memoryRedisChat.json +15 -0
- package/workflow_nodes/langchain_memoryXata.json +14 -0
- package/workflow_nodes/langchain_memoryZep.json +13 -0
- package/workflow_nodes/langchain_model.json +155 -0
- package/workflow_nodes/langchain_mongoCollection.json +16 -0
- package/workflow_nodes/langchain_notice.json +22 -0
- package/workflow_nodes/langchain_openAiAssistant.json +132 -0
- package/workflow_nodes/langchain_options.json +17 -0
- package/workflow_nodes/langchain_outputParserAutofixing.json +8 -0
- package/workflow_nodes/langchain_outputParserItemList.json +8 -0
- package/workflow_nodes/langchain_outputParserStructured.json +12 -0
- package/workflow_nodes/langchain_pineconeNamespace.json +16 -0
- package/workflow_nodes/langchain_queryName.json +16 -0
- package/workflow_nodes/langchain_retrieverContextualCompression.json +8 -0
- package/workflow_nodes/langchain_retrieverMultiQuery.json +8 -0
- package/workflow_nodes/langchain_retrieverVectorStore.json +8 -0
- package/workflow_nodes/langchain_retrieverWorkflow.json +103 -0
- package/workflow_nodes/langchain_sentimentAnalysis.json +52 -0
- package/workflow_nodes/langchain_systemPromptTemplate.json +47 -0
- package/workflow_nodes/langchain_tableName.json +23 -0
- package/workflow_nodes/langchain_textClassifier.json +66 -0
- package/workflow_nodes/langchain_textSplitterCharacterTextSplitter.json +8 -0
- package/workflow_nodes/langchain_textSplitterRecursiveCharacterTextSplitter.json +8 -0
- package/workflow_nodes/langchain_textSplitterTokenSplitter.json +8 -0
- package/workflow_nodes/langchain_toolCalculator.json +8 -0
- package/workflow_nodes/langchain_toolCode.json +12 -0
- package/workflow_nodes/langchain_toolHttpRequest.json +232 -0
- package/workflow_nodes/langchain_toolSearXng.json +8 -0
- package/workflow_nodes/langchain_toolSerpApi.json +8 -0
- package/workflow_nodes/langchain_toolThink.json +8 -0
- package/workflow_nodes/langchain_toolVectorStore.json +11 -0
- package/workflow_nodes/langchain_toolWikipedia.json +8 -0
- package/workflow_nodes/langchain_toolWolframAlpha.json +8 -0
- package/workflow_nodes/langchain_toolWorkflow.json +8 -0
- package/workflow_nodes/langchain_vectorStoreInMemoryInsert.json +29 -0
- package/workflow_nodes/langchain_vectorStoreInMemoryLoad.json +8 -0
- package/workflow_nodes/langchain_vectorStorePineconeInsert.json +37 -0
- package/workflow_nodes/langchain_vectorStorePineconeLoad.json +8 -0
- package/workflow_nodes/langchain_vectorStoreSupabaseInsert.json +32 -0
- package/workflow_nodes/langchain_vectorStoreSupabaseLoad.json +8 -0
- package/workflow_nodes/langchain_vectorStoreZepInsert.json +46 -0
- package/workflow_nodes/langchain_vectorStoreZepLoad.json +8 -0
- package/workflow_nodes/ldap.json +182 -0
- package/workflow_nodes/lemlist.json +44 -0
- package/workflow_nodes/lemlistTrigger.json +45 -0
- package/workflow_nodes/limit.json +26 -0
- package/workflow_nodes/line.json +95 -0
- package/workflow_nodes/linear.json +151 -0
- package/workflow_nodes/linearTrigger.json +71 -0
- package/workflow_nodes/lingvaNex.json +66 -0
- package/workflow_nodes/linkedIn.json +142 -0
- package/workflow_nodes/localFileTrigger.json +120 -0
- package/workflow_nodes/lonescale.json +171 -0
- package/workflow_nodes/lonescaleTrigger.json +8 -0
- package/workflow_nodes/magento2.json +164 -0
- package/workflow_nodes/mailcheck.json +46 -0
- package/workflow_nodes/mailchimp.json +507 -0
- package/workflow_nodes/mailchimpTrigger.json +100 -0
- package/workflow_nodes/mailerLite.json +24 -0
- package/workflow_nodes/mailerLiteTrigger.json +74 -0
- package/workflow_nodes/mailgun.json +81 -0
- package/workflow_nodes/mailjet.json +201 -0
- package/workflow_nodes/mailjetTrigger.json +8 -0
- package/workflow_nodes/mandrill.json +372 -0
- package/workflow_nodes/manualTrigger.json +8 -0
- package/workflow_nodes/markdown.json +376 -0
- package/workflow_nodes/marketstack.json +126 -0
- package/workflow_nodes/matrix.json +264 -0
- package/workflow_nodes/mattermost.json +8 -0
- package/workflow_nodes/mautic.json +564 -0
- package/workflow_nodes/mauticTrigger.json +54 -0
- package/workflow_nodes/medium.json +209 -0
- package/workflow_nodes/merge.json +125 -0
- package/workflow_nodes/messageBird.json +182 -0
- package/workflow_nodes/metabase.json +175 -0
- package/workflow_nodes/microsoftDynamicsCrm.json +100 -0
- package/workflow_nodes/microsoftEntra.json +51 -0
- package/workflow_nodes/microsoftExcel.json +35 -0
- package/workflow_nodes/microsoftGraphSecurity.json +113 -0
- package/workflow_nodes/microsoftOneDrive.json +232 -0
- package/workflow_nodes/microsoftOneDriveTrigger.json +80 -0
- package/workflow_nodes/microsoftOutlook.json +40 -0
- package/workflow_nodes/microsoftOutlookTrigger.json +24 -0
- package/workflow_nodes/microsoftSql.json +81 -0
- package/workflow_nodes/microsoftTeams.json +36 -0
- package/workflow_nodes/microsoftToDo.json +181 -0
- package/workflow_nodes/mindee.json +86 -0
- package/workflow_nodes/misp.json +399 -0
- package/workflow_nodes/mocean.json +103 -0
- package/workflow_nodes/mondayCom.json +290 -0
- package/workflow_nodes/mongoDb.json +16 -0
- package/workflow_nodes/monicaCrm.json +543 -0
- package/workflow_nodes/moveBinaryData.json +121 -0
- package/workflow_nodes/mqtt.json +67 -0
- package/workflow_nodes/mqttTrigger.json +47 -0
- package/workflow_nodes/msg91.json +65 -0
- package/workflow_nodes/mySql.json +111 -0
- package/workflow_nodes/n8n.json +75 -0
- package/workflow_nodes/n8nTrigger.json +27 -0
- package/workflow_nodes/nasa.json +310 -0
- package/workflow_nodes/netlify.json +87 -0
- package/workflow_nodes/netlifyTrigger.json +68 -0
- package/workflow_nodes/netscalerAdc.json +243 -0
- package/workflow_nodes/nextCloud.json +312 -0
- package/workflow_nodes/noOp.json +8 -0
- package/workflow_nodes/nocoDb.json +276 -0
- package/workflow_nodes/notion.json +8 -0
- package/workflow_nodes/notionTrigger.json +75 -0
- package/workflow_nodes/npm.json +64 -0
- package/workflow_nodes/odoo.json +344 -0
- package/workflow_nodes/okta.json +97 -0
- package/workflow_nodes/oneSimpleApi.json +281 -0
- package/workflow_nodes/onfleet.json +316 -0
- package/workflow_nodes/onfleetTrigger.json +8 -0
- package/workflow_nodes/openAi.json +154 -0
- package/workflow_nodes/openThesaurus.json +81 -0
- package/workflow_nodes/openWeatherMap.json +129 -0
- package/workflow_nodes/orbit.json +375 -0
- package/workflow_nodes/oura.json +74 -0
- package/workflow_nodes/paddle.json +403 -0
- package/workflow_nodes/pagerDuty.json +351 -0
- package/workflow_nodes/payPal.json +196 -0
- package/workflow_nodes/payPalTrigger.json +40 -0
- package/workflow_nodes/peekalink.json +41 -0
- package/workflow_nodes/phantombuster.json +172 -0
- package/workflow_nodes/philipsHue.json +177 -0
- package/workflow_nodes/pipedrive.json +860 -0
- package/workflow_nodes/pipedriveTrigger.json +11 -0
- package/workflow_nodes/plivo.json +91 -0
- package/workflow_nodes/postHog.json +122 -0
- package/workflow_nodes/postbin.json +60 -0
- package/workflow_nodes/postgres.json +109 -0
- package/workflow_nodes/postgresTrigger.json +8 -0
- package/workflow_nodes/postmarkTrigger.json +72 -0
- package/workflow_nodes/profitWell.json +305 -0
- package/workflow_nodes/pushbullet.json +186 -0
- package/workflow_nodes/pushcut.json +75 -0
- package/workflow_nodes/pushcutTrigger.json +8 -0
- package/workflow_nodes/pushover.json +159 -0
- package/workflow_nodes/questDb.json +94 -0
- package/workflow_nodes/quickChart.json +188 -0
- package/workflow_nodes/quickbase.json +205 -0
- package/workflow_nodes/quickbooks.json +550 -0
- package/workflow_nodes/rabbitmq.json +165 -0
- package/workflow_nodes/rabbitmqTrigger.json +8 -0
- package/workflow_nodes/raindrop.json +216 -0
- package/workflow_nodes/readBinaryFile.json +26 -0
- package/workflow_nodes/readBinaryFiles.json +26 -0
- package/workflow_nodes/readPDF.json +31 -0
- package/workflow_nodes/readWriteFile.json +27 -0
- package/workflow_nodes/reddit.json +309 -0
- package/workflow_nodes/redis.json +183 -0
- package/workflow_nodes/redisTrigger.json +8 -0
- package/workflow_nodes/removeDuplicates.json +8 -0
- package/workflow_nodes/renameKeys.json +67 -0
- package/workflow_nodes/respondToWebhook.json +126 -0
- package/workflow_nodes/rocketchat.json +216 -0
- package/workflow_nodes/rssFeedRead.json +28 -0
- package/workflow_nodes/rssFeedReadTrigger.json +17 -0
- package/workflow_nodes/rundeck.json +79 -0
- package/workflow_nodes/s3.json +425 -0
- package/workflow_nodes/salesforce.json +1137 -0
- package/workflow_nodes/salesforceTrigger.json +122 -0
- package/workflow_nodes/salesmate.json +467 -0
- package/workflow_nodes/scheduleTrigger.json +270 -0
- package/workflow_nodes/seaTable.json +8 -0
- package/workflow_nodes/seaTableTrigger.json +87 -0
- package/workflow_nodes/securityScorecard.json +459 -0
- package/workflow_nodes/segment.json +219 -0
- package/workflow_nodes/sendGrid.json +359 -0
- package/workflow_nodes/sendy.json +225 -0
- package/workflow_nodes/sentryIo.json +426 -0
- package/workflow_nodes/serviceNow.json +544 -0
- package/workflow_nodes/set.json +124 -0
- package/workflow_nodes/shopify.json +707 -0
- package/workflow_nodes/shopifyTrigger.json +8 -0
- package/workflow_nodes/signl4.json +133 -0
- package/workflow_nodes/simulate.json +30 -0
- package/workflow_nodes/simulateTrigger.json +8 -0
- package/workflow_nodes/slack.json +62 -0
- package/workflow_nodes/slackTrigger.json +135 -0
- package/workflow_nodes/sms77.json +121 -0
- package/workflow_nodes/snowflake.json +65 -0
- package/workflow_nodes/sort.json +57 -0
- package/workflow_nodes/splitInBatches.json +30 -0
- package/workflow_nodes/splitOut.json +62 -0
- package/workflow_nodes/splunk.json +40 -0
- package/workflow_nodes/spontit.json +123 -0
- package/workflow_nodes/spotify.json +285 -0
- package/workflow_nodes/spreadsheetFile.json +8 -0
- package/workflow_nodes/sseTrigger.json +8 -0
- package/workflow_nodes/ssh.json +105 -0
- package/workflow_nodes/stackby.json +85 -0
- package/workflow_nodes/start.json +15 -0
- package/workflow_nodes/stickyNote.json +36 -0
- package/workflow_nodes/stopAndError.json +8 -0
- package/workflow_nodes/storyblok.json +138 -0
- package/workflow_nodes/strapi.json +138 -0
- package/workflow_nodes/strava.json +427 -0
- package/workflow_nodes/stravaTrigger.json +79 -0
- package/workflow_nodes/stripe.json +357 -0
- package/workflow_nodes/stripeTrigger.json +775 -0
- package/workflow_nodes/summarize.json +124 -0
- package/workflow_nodes/supabase.json +136 -0
- package/workflow_nodes/surveyMonkeyTrigger.json +160 -0
- package/workflow_nodes/switch.json +91 -0
- package/workflow_nodes/syncroMsp.json +8 -0
- package/workflow_nodes/taiga.json +340 -0
- package/workflow_nodes/taigaTrigger.json +81 -0
- package/workflow_nodes/tapfiliate.json +241 -0
- package/workflow_nodes/telegram.json +612 -0
- package/workflow_nodes/telegramTrigger.json +142 -0
- package/workflow_nodes/theHive.json +497 -0
- package/workflow_nodes/theHiveProject.json +8 -0
- package/workflow_nodes/theHiveProjectTrigger.json +162 -0
- package/workflow_nodes/theHiveTrigger.json +101 -0
- package/workflow_nodes/timescaleDb.json +95 -0
- package/workflow_nodes/todoist.json +285 -0
- package/workflow_nodes/togglTrigger.json +24 -0
- package/workflow_nodes/totp.json +86 -0
- package/workflow_nodes/travisCi.json +142 -0
- package/workflow_nodes/trello.json +609 -0
- package/workflow_nodes/trelloTrigger.json +8 -0
- package/workflow_nodes/twake.json +76 -0
- package/workflow_nodes/twilio.json +95 -0
- package/workflow_nodes/twilioTrigger.json +46 -0
- package/workflow_nodes/twist.json +376 -0
- package/workflow_nodes/twitter.json +40 -0
- package/workflow_nodes/typeformTrigger.json +62 -0
- package/workflow_nodes/unleashedSoftware.json +154 -0
- package/workflow_nodes/uplead.json +72 -0
- package/workflow_nodes/uproc.json +26 -0
- package/workflow_nodes/uptimeRobot.json +453 -0
- package/workflow_nodes/urlScanIo.json +113 -0
- package/workflow_nodes/venafiTlsProtectCloud.json +310 -0
- package/workflow_nodes/venafiTlsProtectCloudTrigger.json +38 -0
- package/workflow_nodes/venafiTlsProtectDatacenter.json +491 -0
- package/workflow_nodes/vero.json +158 -0
- package/workflow_nodes/vonage.json +125 -0
- package/workflow_nodes/wait.json +71 -0
- package/workflow_nodes/webflow.json +38 -0
- package/workflow_nodes/webflowTrigger.json +8 -0
- package/workflow_nodes/webhook.json +55 -0
- package/workflow_nodes/wekan.json +460 -0
- package/workflow_nodes/whatsApp.json +476 -0
- package/workflow_nodes/whatsAppTrigger.json +103 -0
- package/workflow_nodes/wise.json +330 -0
- package/workflow_nodes/wiseTrigger.json +8 -0
- package/workflow_nodes/wooCommerce.json +812 -0
- package/workflow_nodes/wooCommerceTrigger.json +8 -0
- package/workflow_nodes/wordpress.json +500 -0
- package/workflow_nodes/workableTrigger.json +51 -0
- package/workflow_nodes/writeBinaryFile.json +34 -0
- package/workflow_nodes/wufooTrigger.json +37 -0
- package/workflow_nodes/xero.json +530 -0
- package/workflow_nodes/xml.json +129 -0
- package/workflow_nodes/youTube.json +578 -0
- package/workflow_nodes/yourls.json +71 -0
- package/workflow_nodes/zammad.json +406 -0
- package/workflow_nodes/zendesk.json +526 -0
- package/workflow_nodes/zendeskTrigger.json +187 -0
- package/workflow_nodes/zohoCrm.json +721 -0
- package/workflow_nodes/zoom.json +507 -0
- package/workflow_nodes/zulip.json +371 -0
|
@@ -0,0 +1,1137 @@
|
|
|
1
|
+
{
|
|
2
|
+
"nodeType": "n8n-nodes-base.salesforce",
|
|
3
|
+
"displayName": "Salesforce",
|
|
4
|
+
"description": "Consume Salesforce API",
|
|
5
|
+
"version": 1,
|
|
6
|
+
"properties": [
|
|
7
|
+
{
|
|
8
|
+
"name": "externalId",
|
|
9
|
+
"displayName": "Match Against",
|
|
10
|
+
"type": "options",
|
|
11
|
+
"default": "",
|
|
12
|
+
"description": "The field to check to see if the account already exists. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
|
|
13
|
+
"required": true
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"name": "externalIdValue",
|
|
17
|
+
"displayName": "Value to Match",
|
|
18
|
+
"type": "string",
|
|
19
|
+
"default": "",
|
|
20
|
+
"description": "If this value exists in the 'match against' field, update the account. Otherwise create a new one.",
|
|
21
|
+
"required": true
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"name": "name",
|
|
25
|
+
"displayName": "Name",
|
|
26
|
+
"type": "string",
|
|
27
|
+
"default": "",
|
|
28
|
+
"description": "Name of the account. Maximum size is 255 characters.",
|
|
29
|
+
"required": true
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"name": "additionalFields",
|
|
33
|
+
"displayName": "Additional Fields",
|
|
34
|
+
"type": "collection",
|
|
35
|
+
"default": {},
|
|
36
|
+
"description": "Account number assigned to this account (not the unique ID). Maximum size is 40 characters.",
|
|
37
|
+
"placeholder": "Add Field"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"name": "annualRevenue",
|
|
41
|
+
"displayName": "Annual Revenue",
|
|
42
|
+
"type": "number",
|
|
43
|
+
"default": "",
|
|
44
|
+
"description": "Estimated annual revenue of the account"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"name": "accountSource",
|
|
48
|
+
"displayName": "Account Source Name or ID",
|
|
49
|
+
"type": "options",
|
|
50
|
+
"default": "",
|
|
51
|
+
"description": "The source of the account record. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "billingCity",
|
|
55
|
+
"displayName": "Billing City",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"default": "",
|
|
58
|
+
"description": "Details for the billing address of this account. Maximum size is 40 characters."
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"name": "billingCountry",
|
|
62
|
+
"displayName": "Billing Country",
|
|
63
|
+
"type": "string",
|
|
64
|
+
"default": "",
|
|
65
|
+
"description": "Details for the billing address of this account. Maximum size is 80 characters."
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"name": "billingPostalCode",
|
|
69
|
+
"displayName": "Billing Postal Code",
|
|
70
|
+
"type": "string",
|
|
71
|
+
"default": "",
|
|
72
|
+
"description": "Details for the billing address of this account. Maximum size is 20 characters."
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
"name": "billingState",
|
|
76
|
+
"displayName": "Billing State",
|
|
77
|
+
"type": "string",
|
|
78
|
+
"default": "",
|
|
79
|
+
"description": "Details for the billing address of this account. Maximum size is 80 characters."
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "billingStreet",
|
|
83
|
+
"displayName": "Billing Street",
|
|
84
|
+
"type": "string",
|
|
85
|
+
"default": "",
|
|
86
|
+
"description": "Street address for the billing address of this account"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "customFieldsUi",
|
|
90
|
+
"displayName": "Custom Fields",
|
|
91
|
+
"type": "fixedCollection",
|
|
92
|
+
"default": {},
|
|
93
|
+
"description": "Filter by custom fields",
|
|
94
|
+
"placeholder": "Add Custom Field"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "value",
|
|
98
|
+
"displayName": "Value",
|
|
99
|
+
"type": "string",
|
|
100
|
+
"default": "",
|
|
101
|
+
"description": "The value to set on custom field"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"name": "description",
|
|
105
|
+
"displayName": "Description",
|
|
106
|
+
"type": "string",
|
|
107
|
+
"default": "",
|
|
108
|
+
"description": "Text description of the account. Limited to 32,000 KB."
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"name": "fax",
|
|
112
|
+
"displayName": "Fax",
|
|
113
|
+
"type": "string",
|
|
114
|
+
"default": "",
|
|
115
|
+
"description": "Fax number for the account"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "jigsaw",
|
|
119
|
+
"displayName": "Jigsaw",
|
|
120
|
+
"type": "string",
|
|
121
|
+
"default": "",
|
|
122
|
+
"description": "References the ID of a company in Data.com"
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"name": "industry",
|
|
126
|
+
"displayName": "Industry",
|
|
127
|
+
"type": "string",
|
|
128
|
+
"default": "",
|
|
129
|
+
"description": "The website of this account. Maximum of 255 characters."
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"name": "numberOfEmployees",
|
|
133
|
+
"displayName": "Number Of Employees",
|
|
134
|
+
"type": "number",
|
|
135
|
+
"default": ""
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "owner",
|
|
139
|
+
"displayName": "Owner Name or ID",
|
|
140
|
+
"type": "options",
|
|
141
|
+
"default": "",
|
|
142
|
+
"description": "The owner of the account. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
"name": "parentId",
|
|
146
|
+
"displayName": "Parent ID",
|
|
147
|
+
"type": "string",
|
|
148
|
+
"default": "",
|
|
149
|
+
"description": "ID of the parent object, if any"
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"name": "phone",
|
|
153
|
+
"displayName": "Phone",
|
|
154
|
+
"type": "string",
|
|
155
|
+
"default": "",
|
|
156
|
+
"description": "Phone number for the account"
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"name": "recordTypeId",
|
|
160
|
+
"displayName": "Record Type Name or ID",
|
|
161
|
+
"type": "options",
|
|
162
|
+
"default": "",
|
|
163
|
+
"description": "Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"name": "sicDesc",
|
|
167
|
+
"displayName": "SicDesc",
|
|
168
|
+
"type": "string",
|
|
169
|
+
"default": "",
|
|
170
|
+
"description": "A brief description of an organization’s line of business, based on its SIC code"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "type",
|
|
174
|
+
"displayName": "Type Name or ID",
|
|
175
|
+
"type": "options",
|
|
176
|
+
"default": "",
|
|
177
|
+
"description": "Type of account. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
178
|
+
},
|
|
179
|
+
{
|
|
180
|
+
"name": "shippingCity",
|
|
181
|
+
"displayName": "Shipping City",
|
|
182
|
+
"type": "string",
|
|
183
|
+
"default": "",
|
|
184
|
+
"description": "Details of the shipping address for this account. City maximum size is 40 characters."
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"name": "shippingCountry",
|
|
188
|
+
"displayName": "Shipping Country",
|
|
189
|
+
"type": "string",
|
|
190
|
+
"default": "",
|
|
191
|
+
"description": "Details of the shipping address for this account. Country maximum size is 80 characters."
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "shippingPostalCode",
|
|
195
|
+
"displayName": "Shipping Postal Code",
|
|
196
|
+
"type": "string",
|
|
197
|
+
"default": "",
|
|
198
|
+
"description": "Details of the shipping address for this account. Postal code maximum size is 20 characters."
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"name": "shippingState",
|
|
202
|
+
"displayName": "Shipping State",
|
|
203
|
+
"type": "string",
|
|
204
|
+
"default": "",
|
|
205
|
+
"description": "Details of the shipping address for this account. State maximum size is 80 characters."
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "shippingStreet",
|
|
209
|
+
"displayName": "Shipping Street",
|
|
210
|
+
"type": "string",
|
|
211
|
+
"default": "",
|
|
212
|
+
"description": "The street address of the shipping address for this account. Maximum of 255 characters."
|
|
213
|
+
},
|
|
214
|
+
{
|
|
215
|
+
"name": "website",
|
|
216
|
+
"displayName": "Website",
|
|
217
|
+
"type": "string",
|
|
218
|
+
"default": "",
|
|
219
|
+
"description": "The website of this account. Maximum of 255 characters."
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"name": "accountId",
|
|
223
|
+
"displayName": "Account ID",
|
|
224
|
+
"type": "string",
|
|
225
|
+
"default": "",
|
|
226
|
+
"description": "ID of account that needs to be fetched",
|
|
227
|
+
"required": true
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"name": "updateFields",
|
|
231
|
+
"displayName": "Update Fields",
|
|
232
|
+
"type": "collection",
|
|
233
|
+
"default": {},
|
|
234
|
+
"description": "Account number assigned to this account (not the unique ID). Maximum size is 40 characters.",
|
|
235
|
+
"placeholder": "Add Field"
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "ownerId",
|
|
239
|
+
"displayName": "Owner Name or ID",
|
|
240
|
+
"type": "options",
|
|
241
|
+
"default": "",
|
|
242
|
+
"description": "The owner of the account. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"name": "limit",
|
|
246
|
+
"displayName": "Limit",
|
|
247
|
+
"type": "number",
|
|
248
|
+
"default": 50,
|
|
249
|
+
"description": "Max number of results to return"
|
|
250
|
+
},
|
|
251
|
+
{
|
|
252
|
+
"name": "options",
|
|
253
|
+
"displayName": "Options",
|
|
254
|
+
"type": "collection",
|
|
255
|
+
"default": {},
|
|
256
|
+
"description": "Fields to include separated by ,",
|
|
257
|
+
"placeholder": "Add Field"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"name": "conditionsUi",
|
|
261
|
+
"displayName": "Conditions",
|
|
262
|
+
"type": "fixedCollection",
|
|
263
|
+
"default": {},
|
|
264
|
+
"description": "The condition to set",
|
|
265
|
+
"placeholder": "Add Condition"
|
|
266
|
+
},
|
|
267
|
+
{
|
|
268
|
+
"name": "operation",
|
|
269
|
+
"displayName": "Operation",
|
|
270
|
+
"type": "options",
|
|
271
|
+
"default": null
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"name": "<=",
|
|
275
|
+
"default": null
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "=",
|
|
279
|
+
"default": null
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": ">",
|
|
283
|
+
"default": null
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": ">=",
|
|
287
|
+
"default": null
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
"name": "title",
|
|
291
|
+
"displayName": "Title",
|
|
292
|
+
"type": "string",
|
|
293
|
+
"default": "",
|
|
294
|
+
"description": "Title of the note",
|
|
295
|
+
"required": true
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "isPrivate",
|
|
299
|
+
"displayName": "Is Private",
|
|
300
|
+
"type": "boolean",
|
|
301
|
+
"default": false,
|
|
302
|
+
"description": "Whether true, only the note owner or a user with the “Modify All Data” permission can view the note or query it via the API"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"name": "Create",
|
|
306
|
+
"default": null,
|
|
307
|
+
"description": "Create an account"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"name": "Create or Update",
|
|
311
|
+
"default": null,
|
|
312
|
+
"description": "Create a new account, or update the current one if it already exists (upsert)"
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
"name": "Delete",
|
|
316
|
+
"default": null,
|
|
317
|
+
"description": "Delete an account"
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"name": "Get",
|
|
321
|
+
"default": null,
|
|
322
|
+
"description": "Get an account"
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "Get Many",
|
|
326
|
+
"default": null,
|
|
327
|
+
"description": "Get many accounts"
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"name": "Get Summary",
|
|
331
|
+
"default": null,
|
|
332
|
+
"description": "Returns an overview of account's metadata"
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"name": "Update",
|
|
336
|
+
"default": null,
|
|
337
|
+
"description": "Update an account"
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"name": "binaryPropertyName",
|
|
341
|
+
"displayName": "Input Binary Field",
|
|
342
|
+
"type": "string",
|
|
343
|
+
"default": "data",
|
|
344
|
+
"placeholder": "",
|
|
345
|
+
"required": true
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"name": "attachmentId",
|
|
349
|
+
"displayName": "Attachment ID",
|
|
350
|
+
"type": "string",
|
|
351
|
+
"default": "",
|
|
352
|
+
"description": "ID of attachment that needs to be fetched",
|
|
353
|
+
"required": true
|
|
354
|
+
},
|
|
355
|
+
{
|
|
356
|
+
"name": "fields",
|
|
357
|
+
"displayName": "Fields",
|
|
358
|
+
"type": "string",
|
|
359
|
+
"default": "",
|
|
360
|
+
"description": "Fields to include separated by ,"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"name": "contactId",
|
|
364
|
+
"displayName": "Contact ID",
|
|
365
|
+
"type": "string",
|
|
366
|
+
"default": "",
|
|
367
|
+
"description": "ID of the associated Contact"
|
|
368
|
+
},
|
|
369
|
+
{
|
|
370
|
+
"name": "isEscalated",
|
|
371
|
+
"displayName": "Is Escalated",
|
|
372
|
+
"type": "boolean",
|
|
373
|
+
"default": false,
|
|
374
|
+
"description": "Whether indicates whether the case has been escalated (true) or not"
|
|
375
|
+
},
|
|
376
|
+
{
|
|
377
|
+
"name": "origin",
|
|
378
|
+
"displayName": "Origin Name or ID",
|
|
379
|
+
"type": "options",
|
|
380
|
+
"default": "",
|
|
381
|
+
"description": "The source of the case, such as Email, Phone, or Web. Label is Case Origin. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "ParentId",
|
|
385
|
+
"displayName": "Parent ID",
|
|
386
|
+
"type": "string",
|
|
387
|
+
"default": "",
|
|
388
|
+
"description": "The ID of the parent case in the hierarchy. The label is Parent Case."
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"name": "priority",
|
|
392
|
+
"displayName": "Priority Name or ID",
|
|
393
|
+
"type": "options",
|
|
394
|
+
"default": "",
|
|
395
|
+
"description": "The importance or urgency of the case, such as High, Medium, or Low. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "reason",
|
|
399
|
+
"displayName": "Reason Name or ID",
|
|
400
|
+
"type": "options",
|
|
401
|
+
"default": "",
|
|
402
|
+
"description": "The reason why the case was created, such as Instructions not clear, or User didn’t attend training. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"name": "status",
|
|
406
|
+
"displayName": "Status Name or ID",
|
|
407
|
+
"type": "options",
|
|
408
|
+
"default": "",
|
|
409
|
+
"description": "The status of the case, such as “New,” “Closed,” or “Escalated.” This field directly controls the IsClosed flag. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"name": "subject",
|
|
413
|
+
"displayName": "Subject",
|
|
414
|
+
"type": "string",
|
|
415
|
+
"default": "",
|
|
416
|
+
"description": "The subject of the case. Limit: 255 characters."
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
"name": "suppliedCompany",
|
|
420
|
+
"displayName": "Supplied Company",
|
|
421
|
+
"type": "string",
|
|
422
|
+
"default": "",
|
|
423
|
+
"description": "The company name that was entered when the case was created. This field can't be updated after the case has been created.."
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "suppliedEmail",
|
|
427
|
+
"displayName": "Supplied Email",
|
|
428
|
+
"type": "string",
|
|
429
|
+
"default": "",
|
|
430
|
+
"description": "The email address that was entered when the case was created. This field can't be updated after the case has been created."
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
"name": "suppliedName",
|
|
434
|
+
"displayName": "Supplied Name",
|
|
435
|
+
"type": "string",
|
|
436
|
+
"default": "",
|
|
437
|
+
"description": "The name that was entered when the case was created. This field can't be updated after the case has been created."
|
|
438
|
+
},
|
|
439
|
+
{
|
|
440
|
+
"name": "suppliedPhone",
|
|
441
|
+
"displayName": "Supplied Phone",
|
|
442
|
+
"type": "string",
|
|
443
|
+
"default": "",
|
|
444
|
+
"description": "The phone number that was entered when the case was created. This field can't be updated after the case has been created."
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"name": "caseId",
|
|
448
|
+
"displayName": "Case ID",
|
|
449
|
+
"type": "string",
|
|
450
|
+
"default": "",
|
|
451
|
+
"description": "ID of case that needs to be fetched",
|
|
452
|
+
"required": true
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"name": "isPublished",
|
|
456
|
+
"displayName": "Is Published",
|
|
457
|
+
"type": "boolean",
|
|
458
|
+
"default": false,
|
|
459
|
+
"description": "Whether the CaseComment is visible to customers in the Self-Service portal (true) or not (false)"
|
|
460
|
+
},
|
|
461
|
+
{
|
|
462
|
+
"name": "lastname",
|
|
463
|
+
"displayName": "Last Name",
|
|
464
|
+
"type": "string",
|
|
465
|
+
"default": "",
|
|
466
|
+
"description": "Required. Last name of the contact. Limited to 80 characters.",
|
|
467
|
+
"required": true
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
"name": "assistantName",
|
|
471
|
+
"displayName": "Assistant Name",
|
|
472
|
+
"type": "string",
|
|
473
|
+
"default": "",
|
|
474
|
+
"description": "The name of the assistant"
|
|
475
|
+
},
|
|
476
|
+
{
|
|
477
|
+
"name": "Assistant Phone",
|
|
478
|
+
"displayName": "Assistant Phone",
|
|
479
|
+
"type": "string",
|
|
480
|
+
"default": "",
|
|
481
|
+
"description": "The telephone number of the assistant"
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
"name": "birthdate",
|
|
485
|
+
"displayName": "Birth Date",
|
|
486
|
+
"type": "dateTime",
|
|
487
|
+
"default": "",
|
|
488
|
+
"description": "The birth date of the contact"
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "department",
|
|
492
|
+
"displayName": "Department",
|
|
493
|
+
"type": "string",
|
|
494
|
+
"default": "",
|
|
495
|
+
"description": "The department of the contact"
|
|
496
|
+
},
|
|
497
|
+
{
|
|
498
|
+
"name": "email",
|
|
499
|
+
"displayName": "Email",
|
|
500
|
+
"type": "string",
|
|
501
|
+
"default": "",
|
|
502
|
+
"description": "Email address for the contact",
|
|
503
|
+
"placeholder": "name@email.com"
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
"name": "otherPostalCode",
|
|
507
|
+
"displayName": "Email Bounced Date",
|
|
508
|
+
"type": "dateTime",
|
|
509
|
+
"default": "",
|
|
510
|
+
"description": "If bounce management is activated and an email sent to the contact bounces, the date and time the bounce occurred"
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"name": "emailBouncedReason",
|
|
514
|
+
"displayName": "Email Bounced Reason",
|
|
515
|
+
"type": "string",
|
|
516
|
+
"default": "",
|
|
517
|
+
"description": "If bounce management is activated and an email sent to the contact bounces, the reason the bounce occurred"
|
|
518
|
+
},
|
|
519
|
+
{
|
|
520
|
+
"name": "firstName",
|
|
521
|
+
"displayName": "First Name",
|
|
522
|
+
"type": "string",
|
|
523
|
+
"default": "",
|
|
524
|
+
"description": "First name of the contact. Maximum size is 40 characters."
|
|
525
|
+
},
|
|
526
|
+
{
|
|
527
|
+
"name": "homePhone",
|
|
528
|
+
"displayName": "Home Phone",
|
|
529
|
+
"type": "string",
|
|
530
|
+
"default": "",
|
|
531
|
+
"description": "Home telephone number for the contact"
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "leadSource",
|
|
535
|
+
"displayName": "Lead Source Name or ID",
|
|
536
|
+
"type": "options",
|
|
537
|
+
"default": "",
|
|
538
|
+
"description": "Source from which the lead was obtained. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
"name": "mailingCity",
|
|
542
|
+
"displayName": "Mailing City",
|
|
543
|
+
"type": "string",
|
|
544
|
+
"default": ""
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
"name": "mailingCountry",
|
|
548
|
+
"displayName": "Mailing Country",
|
|
549
|
+
"type": "string",
|
|
550
|
+
"default": ""
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"name": "mobilePhone",
|
|
554
|
+
"displayName": "Mobile Phone",
|
|
555
|
+
"type": "string",
|
|
556
|
+
"default": "",
|
|
557
|
+
"description": "Contact’s mobile phone number"
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"name": "mailingPostalCode",
|
|
561
|
+
"displayName": "Mailing Postal Code",
|
|
562
|
+
"type": "string",
|
|
563
|
+
"default": ""
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"name": "mailingState",
|
|
567
|
+
"displayName": "Mailing State",
|
|
568
|
+
"type": "string",
|
|
569
|
+
"default": ""
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "mailingStreet",
|
|
573
|
+
"displayName": "Mailing Street",
|
|
574
|
+
"type": "string",
|
|
575
|
+
"default": "",
|
|
576
|
+
"description": "Street address for mailing address"
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"name": "otherCity",
|
|
580
|
+
"displayName": "Other City",
|
|
581
|
+
"type": "string",
|
|
582
|
+
"default": ""
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
"name": "otherCountry",
|
|
586
|
+
"displayName": "Other Country",
|
|
587
|
+
"type": "string",
|
|
588
|
+
"default": ""
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"name": "otherPhone",
|
|
592
|
+
"displayName": "Other Phone",
|
|
593
|
+
"type": "string",
|
|
594
|
+
"default": "",
|
|
595
|
+
"description": "Telephone for alternate address"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "otherState",
|
|
599
|
+
"displayName": "Other State",
|
|
600
|
+
"type": "string",
|
|
601
|
+
"default": ""
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"name": "otherStreet",
|
|
605
|
+
"displayName": "Other Street",
|
|
606
|
+
"type": "string",
|
|
607
|
+
"default": "",
|
|
608
|
+
"description": "Street for alternate address"
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"name": "salutation",
|
|
612
|
+
"displayName": "Salutation",
|
|
613
|
+
"type": "string",
|
|
614
|
+
"default": "",
|
|
615
|
+
"description": "Honorific abbreviation, word, or phrase to be used in front of name in greetings, such as Dr. or Mrs."
|
|
616
|
+
},
|
|
617
|
+
{
|
|
618
|
+
"name": "emailBouncedDate",
|
|
619
|
+
"displayName": "Email Bounced Date",
|
|
620
|
+
"type": "dateTime",
|
|
621
|
+
"default": "",
|
|
622
|
+
"description": "If bounce management is activated and an email sent to the contact bounces, the date and time the bounce occurred"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"name": "lastName",
|
|
626
|
+
"displayName": "Last Name",
|
|
627
|
+
"type": "string",
|
|
628
|
+
"default": "",
|
|
629
|
+
"description": "Last name of the contact. Limited to 80 characters."
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
"name": "campaignId",
|
|
633
|
+
"displayName": "Campaign Name or ID",
|
|
634
|
+
"type": "options",
|
|
635
|
+
"default": "",
|
|
636
|
+
"description": "ID of the campaign that needs to be fetched. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
|
|
637
|
+
"required": true
|
|
638
|
+
},
|
|
639
|
+
{
|
|
640
|
+
"name": "Add Note",
|
|
641
|
+
"default": null,
|
|
642
|
+
"description": "Add note to a contact"
|
|
643
|
+
},
|
|
644
|
+
{
|
|
645
|
+
"name": "customObject",
|
|
646
|
+
"displayName": "Custom Object Name or ID",
|
|
647
|
+
"type": "options",
|
|
648
|
+
"default": "",
|
|
649
|
+
"description": "Name of the custom object. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
|
|
650
|
+
"required": true
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"name": "recordId",
|
|
654
|
+
"displayName": "Record ID",
|
|
655
|
+
"type": "string",
|
|
656
|
+
"default": "",
|
|
657
|
+
"description": "Record ID to be updated",
|
|
658
|
+
"required": true
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"name": "returnAll",
|
|
662
|
+
"displayName": "Return All",
|
|
663
|
+
"type": "boolean",
|
|
664
|
+
"default": false,
|
|
665
|
+
"description": "Whether to return all results or only up to a given limit"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"name": "linkToObjectId",
|
|
669
|
+
"displayName": "Link To Object ID",
|
|
670
|
+
"type": "string",
|
|
671
|
+
"default": "",
|
|
672
|
+
"description": "ID of the object you want to link this document to"
|
|
673
|
+
},
|
|
674
|
+
{
|
|
675
|
+
"name": "jsonParameters",
|
|
676
|
+
"displayName": "JSON Parameters",
|
|
677
|
+
"type": "boolean",
|
|
678
|
+
"default": false,
|
|
679
|
+
"description": "Whether the input variables should be set via the value-key pair UI or JSON/RAW"
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
"name": "variablesJson",
|
|
683
|
+
"displayName": "Variables",
|
|
684
|
+
"type": "json",
|
|
685
|
+
"default": "",
|
|
686
|
+
"description": "Input variables as JSON object"
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
"name": "variablesUi",
|
|
690
|
+
"displayName": "Variables",
|
|
691
|
+
"type": "fixedCollection",
|
|
692
|
+
"default": {},
|
|
693
|
+
"description": "The input variable to send",
|
|
694
|
+
"placeholder": "Add Variable"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"name": "Invoke",
|
|
698
|
+
"default": null,
|
|
699
|
+
"description": "Invoke a flow"
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
"name": "company",
|
|
703
|
+
"displayName": "Company",
|
|
704
|
+
"type": "string",
|
|
705
|
+
"default": "",
|
|
706
|
+
"description": "Company of the lead. If person account record types have been enabled, and if the value of Company is null, the lead converts to a person account.",
|
|
707
|
+
"required": true
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "city",
|
|
711
|
+
"displayName": "City",
|
|
712
|
+
"type": "string",
|
|
713
|
+
"default": "",
|
|
714
|
+
"description": "City for the address of the lead"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"name": "country",
|
|
718
|
+
"displayName": "Country",
|
|
719
|
+
"type": "string",
|
|
720
|
+
"default": "",
|
|
721
|
+
"description": "Country of the lead"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"name": "firstname",
|
|
725
|
+
"displayName": "First Name",
|
|
726
|
+
"type": "string",
|
|
727
|
+
"default": "",
|
|
728
|
+
"description": "First name of the lead. Limited to 40 characters."
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"name": "hasOptedOutOfEmail",
|
|
732
|
+
"displayName": "Has Opted Out of Email",
|
|
733
|
+
"type": "boolean",
|
|
734
|
+
"default": false,
|
|
735
|
+
"description": "Whether the lead doesn’t want to receive email from Salesforce (true) or does (false). Label is Email Opt Out."
|
|
736
|
+
},
|
|
737
|
+
{
|
|
738
|
+
"name": "hasOptedOutOfFax",
|
|
739
|
+
"displayName": "Has Opted Out of Fax",
|
|
740
|
+
"type": "boolean",
|
|
741
|
+
"default": false,
|
|
742
|
+
"description": "Whether the lead doesn’t want to receive fax from Salesforce (true) or does (false). Label is Email Opt Out."
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
"name": "IsUnreadByOwner",
|
|
746
|
+
"displayName": "Is Unread By Owner",
|
|
747
|
+
"type": "boolean",
|
|
748
|
+
"default": false,
|
|
749
|
+
"description": "Whether true, lead has been assigned, but not yet viewed. See Unread Leads for more information. Label is Unread By Owner."
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"name": "postalCode",
|
|
753
|
+
"displayName": "Postal Code",
|
|
754
|
+
"type": "string",
|
|
755
|
+
"default": "",
|
|
756
|
+
"description": "Postal code for the address of the lead. Label is Zip/Postal Code."
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"name": "rating",
|
|
760
|
+
"displayName": "Rating",
|
|
761
|
+
"type": "string",
|
|
762
|
+
"default": "",
|
|
763
|
+
"description": "Rating of the lead"
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
"name": "state",
|
|
767
|
+
"displayName": "State",
|
|
768
|
+
"type": "string",
|
|
769
|
+
"default": "",
|
|
770
|
+
"description": "State for the address of the lead"
|
|
771
|
+
},
|
|
772
|
+
{
|
|
773
|
+
"name": "street",
|
|
774
|
+
"displayName": "Street",
|
|
775
|
+
"type": "string",
|
|
776
|
+
"default": "",
|
|
777
|
+
"description": "Street number and name for the address of the lead"
|
|
778
|
+
},
|
|
779
|
+
{
|
|
780
|
+
"name": "leadId",
|
|
781
|
+
"displayName": "Lead ID",
|
|
782
|
+
"type": "string",
|
|
783
|
+
"default": "",
|
|
784
|
+
"description": "ID of Lead that needs to be fetched",
|
|
785
|
+
"required": true
|
|
786
|
+
},
|
|
787
|
+
{
|
|
788
|
+
"name": "HasOptedOutOfFax",
|
|
789
|
+
"displayName": "Has Opted Out of Fax",
|
|
790
|
+
"type": "boolean",
|
|
791
|
+
"default": false,
|
|
792
|
+
"description": "Whether the lead doesn’t want to receive fax from Salesforce (true) or does (false). Label is Fax Opt Out."
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"name": "closeDate",
|
|
796
|
+
"displayName": "Close Date",
|
|
797
|
+
"type": "dateTime",
|
|
798
|
+
"default": "",
|
|
799
|
+
"description": "Required. Date when the opportunity is expected to close.",
|
|
800
|
+
"required": true
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
"name": "stageName",
|
|
804
|
+
"displayName": "Stage Name or ID",
|
|
805
|
+
"type": "options",
|
|
806
|
+
"default": "",
|
|
807
|
+
"description": "Required. Date when the opportunity is expected to close. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>.",
|
|
808
|
+
"required": true
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"name": "amount",
|
|
812
|
+
"displayName": "Amount",
|
|
813
|
+
"type": "number",
|
|
814
|
+
"default": "",
|
|
815
|
+
"description": "Estimated total sale amount"
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
"name": "forecastCategoryName",
|
|
819
|
+
"displayName": "Forecast Category Name",
|
|
820
|
+
"type": "string",
|
|
821
|
+
"default": "",
|
|
822
|
+
"description": "It is implied, but not directly controlled, by the StageName field"
|
|
823
|
+
},
|
|
824
|
+
{
|
|
825
|
+
"name": "nextStep",
|
|
826
|
+
"displayName": "Next Step",
|
|
827
|
+
"type": "string",
|
|
828
|
+
"default": "",
|
|
829
|
+
"description": "Description of next task in closing opportunity. Limit: 255 characters."
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
"name": "pricebook2Id",
|
|
833
|
+
"displayName": "Pricebook2 ID",
|
|
834
|
+
"type": "string",
|
|
835
|
+
"default": "",
|
|
836
|
+
"description": "ID of a related Pricebook2 object"
|
|
837
|
+
},
|
|
838
|
+
{
|
|
839
|
+
"name": "probability",
|
|
840
|
+
"displayName": "Probability",
|
|
841
|
+
"type": "number",
|
|
842
|
+
"default": "",
|
|
843
|
+
"description": "Percentage of estimated confidence in closing the opportunity"
|
|
844
|
+
},
|
|
845
|
+
{
|
|
846
|
+
"name": "New Business",
|
|
847
|
+
"default": null
|
|
848
|
+
},
|
|
849
|
+
{
|
|
850
|
+
"name": "opportunityId",
|
|
851
|
+
"displayName": "Opportunity ID",
|
|
852
|
+
"type": "string",
|
|
853
|
+
"default": "",
|
|
854
|
+
"description": "ID of opportunity that needs to be fetched",
|
|
855
|
+
"required": true
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"name": "query",
|
|
859
|
+
"displayName": "Query",
|
|
860
|
+
"type": "string",
|
|
861
|
+
"default": "",
|
|
862
|
+
"description": "A SOQL query. An example query parameter string might look like: “SELECT+Name+FROM+MyObject”. If the SOQL query string is invalid, a MALFORMED_QUERY response is returned.",
|
|
863
|
+
"required": true
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
"name": "callDisposition",
|
|
867
|
+
"displayName": "Call Disposition",
|
|
868
|
+
"type": "string",
|
|
869
|
+
"default": "",
|
|
870
|
+
"description": "Represents the result of a given call, for example, “we'll call back,” or “call unsuccessful.” Limit is 255 characters. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center."
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"name": "callDurationInSeconds",
|
|
874
|
+
"displayName": "Call Duration In Seconds",
|
|
875
|
+
"type": "number",
|
|
876
|
+
"default": "",
|
|
877
|
+
"description": "Duration of the call in seconds. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center."
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
"name": "callObject",
|
|
881
|
+
"displayName": "Call Object",
|
|
882
|
+
"type": "string",
|
|
883
|
+
"default": "",
|
|
884
|
+
"description": "Name of a call center. Limit is 255 characters. Not subject to field-level security, available for any user in an organization with Salesforce CRM Call Center."
|
|
885
|
+
},
|
|
886
|
+
{
|
|
887
|
+
"name": "callType",
|
|
888
|
+
"displayName": "Call Type Name or ID",
|
|
889
|
+
"type": "options",
|
|
890
|
+
"default": "",
|
|
891
|
+
"description": "The type of call being answered: Inbound, Internal, or Outbound. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"name": "isReminderSet",
|
|
895
|
+
"displayName": "Is ReminderSet",
|
|
896
|
+
"type": "boolean",
|
|
897
|
+
"default": false,
|
|
898
|
+
"description": "Whether a popup reminder has been set for the task (true) or not (false)"
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"name": "recurrenceType",
|
|
902
|
+
"displayName": "Recurrence Type Name or ID",
|
|
903
|
+
"type": "options",
|
|
904
|
+
"default": "",
|
|
905
|
+
"description": "Recurrence Type of the task. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
"name": "recurrenceInstance",
|
|
909
|
+
"displayName": "Recurrence Instance Name or ID",
|
|
910
|
+
"type": "options",
|
|
911
|
+
"default": "",
|
|
912
|
+
"description": "The frequency of the recurring task. For example, “2nd” or “3rd.”. Choose from the list, or specify an ID using an <a href=\"https://docs.n8n.io/code/expressions/\">expression</a>."
|
|
913
|
+
},
|
|
914
|
+
{
|
|
915
|
+
"name": "recurrenceInterval",
|
|
916
|
+
"displayName": "Recurrence Interval",
|
|
917
|
+
"type": "number",
|
|
918
|
+
"default": "",
|
|
919
|
+
"description": "The interval between recurring tasks"
|
|
920
|
+
},
|
|
921
|
+
{
|
|
922
|
+
"name": "recurrenceDayOfMonth",
|
|
923
|
+
"displayName": "Recurrence Day Of Month",
|
|
924
|
+
"type": "number",
|
|
925
|
+
"default": "",
|
|
926
|
+
"description": "The day of the month in which the task repeats"
|
|
927
|
+
},
|
|
928
|
+
{
|
|
929
|
+
"name": "recurrenceDayOfWeekMask",
|
|
930
|
+
"displayName": "Recurrence Day Of Week Mask",
|
|
931
|
+
"type": "number",
|
|
932
|
+
"default": "",
|
|
933
|
+
"description": "The day or days of the week on which the task repeats. This field contains a bitmask. The values are as follows: Sunday = 1 Monday = 2 Tuesday = 4 Wednesday = 8 Thursday = 16 Friday = 32 Saturday = 64 Multiple days are represented as the sum of their numerical values. For example, Tuesday and Thursday = 4 + 16 = 20."
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"name": "recurrenceEndDateOnly",
|
|
937
|
+
"displayName": "Recurrence End Date Only",
|
|
938
|
+
"type": "dateTime",
|
|
939
|
+
"default": "",
|
|
940
|
+
"description": "The last date on which the task repeats. This field has a timestamp that is always set to midnight in the Coordinated Universal Time (UTC) time zone."
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
"name": "recurrenceMonthOfYear",
|
|
944
|
+
"displayName": "Recurrence Month Of Year",
|
|
945
|
+
"type": "options",
|
|
946
|
+
"default": null
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"name": "February",
|
|
950
|
+
"default": null
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"name": "March",
|
|
954
|
+
"default": null
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"name": "April",
|
|
958
|
+
"default": null
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
"name": "May",
|
|
962
|
+
"default": null
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
"name": "June",
|
|
966
|
+
"default": null
|
|
967
|
+
},
|
|
968
|
+
{
|
|
969
|
+
"name": "July",
|
|
970
|
+
"default": null
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"name": "August",
|
|
974
|
+
"default": null
|
|
975
|
+
},
|
|
976
|
+
{
|
|
977
|
+
"name": "September",
|
|
978
|
+
"default": null
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"name": "October",
|
|
982
|
+
"default": null
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"name": "November",
|
|
986
|
+
"default": null
|
|
987
|
+
},
|
|
988
|
+
{
|
|
989
|
+
"name": "December",
|
|
990
|
+
"default": null
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"name": "recurrenceRegeneratedType",
|
|
994
|
+
"displayName": "Recurrence Regenerated Type",
|
|
995
|
+
"type": "options",
|
|
996
|
+
"default": ""
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"name": "After Date Completed",
|
|
1000
|
+
"default": null
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"name": "(Task Closed)",
|
|
1004
|
+
"default": null
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"name": "recurrenceTimeZoneSidKey",
|
|
1008
|
+
"displayName": "Recurrence TimeZone SidKey",
|
|
1009
|
+
"type": "string",
|
|
1010
|
+
"default": "",
|
|
1011
|
+
"description": "The time zone associated with the recurring task. For example, “UTC-8:00” for Pacific Standard Time."
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
"name": "reminderDateTime",
|
|
1015
|
+
"displayName": "Reminder Date Time",
|
|
1016
|
+
"type": "dateTime",
|
|
1017
|
+
"default": "",
|
|
1018
|
+
"description": "Represents the time when the reminder is scheduled to fire, if IsReminderSet is set to true. If IsReminderSet is set to false, then the user may have deselected the reminder checkbox in the Salesforce user interface, or the reminder has already fired at the time indicated by the value."
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
"name": "whatId",
|
|
1022
|
+
"displayName": "What ID",
|
|
1023
|
+
"type": "string",
|
|
1024
|
+
"default": "",
|
|
1025
|
+
"description": "The WhatId represents nonhuman objects such as accounts, opportunities, campaigns, cases, or custom objects. WhatIds are polymorphic. Polymorphic means a WhatId is equivalent to the ID of a related object."
|
|
1026
|
+
},
|
|
1027
|
+
{
|
|
1028
|
+
"name": "whoId",
|
|
1029
|
+
"displayName": "Who ID",
|
|
1030
|
+
"type": "string",
|
|
1031
|
+
"default": "",
|
|
1032
|
+
"description": "The WhoId represents a human such as a lead or a contact. WhoIds are polymorphic. Polymorphic means a WhoId is equivalent to a contact’s ID or a lead’s ID."
|
|
1033
|
+
},
|
|
1034
|
+
{
|
|
1035
|
+
"name": "taskId",
|
|
1036
|
+
"displayName": "Task ID",
|
|
1037
|
+
"type": "string",
|
|
1038
|
+
"default": "",
|
|
1039
|
+
"description": "ID of task that needs to be fetched",
|
|
1040
|
+
"required": true
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
"name": "userId",
|
|
1044
|
+
"displayName": "User ID",
|
|
1045
|
+
"type": "string",
|
|
1046
|
+
"default": "",
|
|
1047
|
+
"description": "ID of user that needs to be fetched",
|
|
1048
|
+
"required": true
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
"name": "authentication",
|
|
1052
|
+
"displayName": "Authentication",
|
|
1053
|
+
"type": "options",
|
|
1054
|
+
"default": null
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
"name": "OAuth2 JWT",
|
|
1058
|
+
"default": null
|
|
1059
|
+
},
|
|
1060
|
+
{
|
|
1061
|
+
"name": "resource",
|
|
1062
|
+
"displayName": "Resource",
|
|
1063
|
+
"type": "options",
|
|
1064
|
+
"default": null,
|
|
1065
|
+
"description": "Represents an individual account, which is an organization or person involved with your business (such as customers, competitors, and partners)"
|
|
1066
|
+
},
|
|
1067
|
+
{
|
|
1068
|
+
"name": "Attachment",
|
|
1069
|
+
"default": null,
|
|
1070
|
+
"description": "Represents a file that a has uploaded and attached to a parent object"
|
|
1071
|
+
},
|
|
1072
|
+
{
|
|
1073
|
+
"name": "Case",
|
|
1074
|
+
"default": null,
|
|
1075
|
+
"description": "Represents a case, which is a customer issue or problem"
|
|
1076
|
+
},
|
|
1077
|
+
{
|
|
1078
|
+
"name": "Contact",
|
|
1079
|
+
"default": null,
|
|
1080
|
+
"description": "Represents a contact, which is an individual associated with an account"
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"name": "Custom Object",
|
|
1084
|
+
"default": null,
|
|
1085
|
+
"description": "Represents a custom object"
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"name": "Document",
|
|
1089
|
+
"default": null,
|
|
1090
|
+
"description": "Represents a document"
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
"name": "Flow",
|
|
1094
|
+
"default": null,
|
|
1095
|
+
"description": "Represents an autolaunched flow"
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
"name": "Lead",
|
|
1099
|
+
"default": null,
|
|
1100
|
+
"description": "Represents a prospect or potential"
|
|
1101
|
+
},
|
|
1102
|
+
{
|
|
1103
|
+
"name": "Opportunity",
|
|
1104
|
+
"default": null,
|
|
1105
|
+
"description": "Represents an opportunity, which is a sale or pending deal"
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"name": "Search",
|
|
1109
|
+
"default": null,
|
|
1110
|
+
"description": "Search records"
|
|
1111
|
+
},
|
|
1112
|
+
{
|
|
1113
|
+
"name": "Task",
|
|
1114
|
+
"default": null,
|
|
1115
|
+
"description": "Represents a business activity such as making a phone call or other to-do items. In the user interface, and records are collectively referred to as activities."
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"name": "User",
|
|
1119
|
+
"default": null,
|
|
1120
|
+
"description": "Represents a person, which is one user in system"
|
|
1121
|
+
}
|
|
1122
|
+
],
|
|
1123
|
+
"credentialsConfig": [
|
|
1124
|
+
{
|
|
1125
|
+
"name": "salesforceOAuth2Api",
|
|
1126
|
+
"required": true
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
"name": "authentication",
|
|
1130
|
+
"required": false
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"name": "resource",
|
|
1134
|
+
"required": false
|
|
1135
|
+
}
|
|
1136
|
+
]
|
|
1137
|
+
}
|