n8n_trigger_workflow
Trigger n8n workflows via webhook with a JSON payload, enabling automated Salesforce pipelines like starting analysis and deployment from a Jira issue key.
Instructions
Trigger a specific n8n workflow by its webhook URL, passing a JSON payload. This enables Claude to kick off the full Salesforce automation pipeline — for example, by sending a Jira issue key to start the analysis and deployment workflow.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| payload | Yes | JSON payload to send to the webhook. Structure depends on what the n8n workflow expects. For the Salesforce AI Agent pipeline, include fields like: { issueKey, projectKey, environment, triggeredBy } | |
| webhookUrl | Yes | The full n8n webhook URL for the workflow (e.g. https://your-n8n.com/webhook/abc123). Obtain this from the Webhook trigger node in your n8n workflow. | |
| waitForResponse | No | If true, the tool waits for a synchronous response from the webhook. If false (default), it fires-and-forgets and returns immediately. Set to true only for workflows configured with 'Respond to Webhook' node. |