Back to Integrations
integrationJira Software node
integrationSalesforce node

Jira Software and Salesforce integration

Save yourself the work of writing custom integrations for Jira Software and Salesforce and use n8n instead. Build adaptable and scalable Development, Productivity, Sales, and Communication workflows that work with your technology stack. All within a building experience you will love.

How to connect Jira Software and Salesforce

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

Jira Software and Salesforce integration: Create a new workflow and add the first step

Step 2: Add and configure Jira Software and Salesforce nodes

You can find Jira Software and Salesforce in the nodes panel. Drag them onto your workflow canvas, selecting their actions. Click each node, choose a credential, and authenticate to grant n8n access. Configure Jira Software and Salesforce nodes one by one: input data on the left, parameters in the middle, and output data on the right.

Jira Software and Salesforce integration: Add and configure Jira Software and Salesforce nodes

Step 3: Connect Jira Software and Salesforce

A connection establishes a link between Jira Software and Salesforce (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

Jira Software and Salesforce integration: Connect Jira Software and Salesforce

Step 4: Customize and extend your Jira Software and Salesforce integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect Jira Software and Salesforce with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

Jira Software and Salesforce integration: Customize and extend your Jira Software and Salesforce integration

Step 5: Test and activate your Jira Software and Salesforce workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from Jira Software to Salesforce or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

Jira Software and Salesforce integration: Test and activate your Jira Software and Salesforce workflow

Automate B2B SaaS renewal risk management with CRM, support & usage data

Description

This workflow is designed for B2B/SaaS teams who want to secure renewals before it’s too late.

It runs every day, identifies all accounts whose licenses are up for renewal in J–30, enriches them with CRM, product usage and support data, computes an internal churn risk level, and then triggers the appropriate playbook:

HIGH risk** → full escalation (tasks, alerts, emails)
MEDIUM risk** → proactive follow-up by Customer Success
LOW risk** → light renewal touchpoint / monitoring

Everything is logged into a database table so that you can build dashboards, run analysis, or plug additional automations on top.

How it works

Daily detection (J–30 renewals)
A scheduled trigger runs every morning and queries your database (Postgres / Supabase) to fetch all active subscriptions expiring in 30 days. Each row includes the account identifier, name, renewal date and basic commercial data.

Data enrichment across tools
For each account, the workflow calls several business systems to collect context:
HubSpot → engagement history
Salesforce → account profile and segment
Pipedrive → deal activities and associated products
Analytics API → product feature usage and activity trends
Zendesk → recent support tickets and potential friction signals

All of this is merged into a single, unified item.

Churn scoring & routing
An internal scoring step evaluates the risk for each account based on multiple signals (engagement, usage, support, timing).
The workflow then categorizes each account into one of three risk levels:

HIGH – strong churn signals → needs immediate attention
MEDIUM – some warning signs → needs proactive follow-up
LOW – looks healthy → light renewal reminder

A Switch node routes each account to the relevant playbook.

Automated playbooks

🔴 HIGH risk
Create a Trello card on a dedicated “High-Risk Renewals” board/list
Create a Jira ticket for the CS / AM team
Send a Slack alert in a designated channel
Send a detailed email to the CSM and/or account manager

🟠 MEDIUM risk
Create a Trello card in a “Renewals – Follow-up” list
Send a contextual email to the CSM to recommend a proactive check-in

🟢 LOW risk
Send a soft renewal email / internal note to keep the account on the radar

Logging & daily reporting
For every processed account, the workflow prepares a structured log record (account, renewal date, risk level, basic context).
A Postgres node is used to insert the data into a churn_logs table.

At the end of each run, all processed accounts are aggregated and a daily summary email is sent (for example to the Customer Success leadership team), listing the renewals and their risk levels.

Requirements

Database
A table named churn_logs (or equivalent) to store workflow decisions and history.
Example fields: account_id, account_name, end_date, riskScore, riskLevel, playbook, trello_link, jira_link, timestamp.

External APIs
HubSpot (engagement data)
Salesforce (account profile)
Pipedrive (deals & products)
Zendesk (support tickets)
Optional: product analytics API for usage metrics

Communication & task tools
Gmail (emails to CSM / AM / summary recipients)
Slack (alert channel for high-risk cases)
Trello (task creation for CS follow-up)
Jira (escalation tickets for high-risk renewals)

Configuration variables
Thresholds are configured in the Init config & thresholds node:
days_before_renewal
churn_threshold_high
churn_threshold_medium
These parameters let you adapt the detection window and risk sensitivity to your own business rules.

Typical use cases

Customer Success teams who want a daily churn watchlist without exporting spreadsheets.
RevOps teams looking to standardize renewal playbooks across tools.
SaaS companies who need to prioritize renewals based on real risk signals rather than gut feeling.
Product-led organizations that want to combine usage data + CRM + support into one automated process.

Tutorial video
Watch the Youtube Tutorial video

About me :
I’m Yassin a Project & Product Manager Scaling tech products with data-driven project management.
📬 Feel free to connect with me on Linkedin

Nodes used in this workflow

Popular Jira Software and Salesforce workflows

+5

Automate B2B SaaS Renewal Risk Management with CRM, Support & Usage Data

Description This workflow is designed for B2B/SaaS teams who want to secure renewals before it’s too late. It runs every day, identifies all accounts whose licenses are up for renewal in J–30, enriches them with CRM, product usage and support data, computes an internal churn risk level, and then triggers the appropriate playbook: HIGH risk** → full escalation (tasks, alerts, emails) MEDIUM risk** → proactive follow-up by Customer Success LOW risk** → light renewal touchpoint / monitoring Everything is logged into a database table so that you can build dashboards, run analysis, or plug additional automations on top. How it works Daily detection (J–30 renewals) A scheduled trigger runs every morning and queries your database (Postgres / Supabase) to fetch all active subscriptions expiring in 30 days. Each row includes the account identifier, name, renewal date and basic commercial data. Data enrichment across tools For each account, the workflow calls several business systems to collect context: HubSpot → engagement history Salesforce → account profile and segment Pipedrive → deal activities and associated products Analytics API → product feature usage and activity trends Zendesk → recent support tickets and potential friction signals All of this is merged into a single, unified item. Churn scoring & routing An internal scoring step evaluates the risk for each account based on multiple signals (engagement, usage, support, timing). The workflow then categorizes each account into one of three risk levels: HIGH – strong churn signals → needs immediate attention MEDIUM – some warning signs → needs proactive follow-up LOW – looks healthy → light renewal reminder A Switch node routes each account to the relevant playbook. Automated playbooks 🔴 HIGH risk Create a Trello card on a dedicated “High-Risk Renewals” board/list Create a Jira ticket for the CS / AM team Send a Slack alert in a designated channel Send a detailed email to the CSM and/or account manager 🟠 MEDIUM risk Create a Trello card in a “Renewals – Follow-up” list Send a contextual email to the CSM to recommend a proactive check-in 🟢 LOW risk Send a soft renewal email / internal note to keep the account on the radar Logging & daily reporting For every processed account, the workflow prepares a structured log record (account, renewal date, risk level, basic context). A Postgres node is used to insert the data into a churn_logs table. At the end of each run, all processed accounts are aggregated and a daily summary email is sent (for example to the Customer Success leadership team), listing the renewals and their risk levels. Requirements Database A table named churn_logs (or equivalent) to store workflow decisions and history. Example fields: account_id, account_name, end_date, riskScore, riskLevel, playbook, trello_link, jira_link, timestamp. External APIs HubSpot (engagement data) Salesforce (account profile) Pipedrive (deals & products) Zendesk (support tickets) Optional: product analytics API for usage metrics Communication & task tools Gmail (emails to CSM / AM / summary recipients) Slack (alert channel for high-risk cases) Trello (task creation for CS follow-up) Jira (escalation tickets for high-risk renewals) Configuration variables Thresholds are configured in the Init config & thresholds node: days_before_renewal churn_threshold_high churn_threshold_medium These parameters let you adapt the detection window and risk sensitivity to your own business rules. Typical use cases Customer Success teams who want a daily churn watchlist without exporting spreadsheets. RevOps teams looking to standardize renewal playbooks across tools. SaaS companies who need to prioritize renewals based on real risk signals rather than gut feeling. Product-led organizations that want to combine usage data + CRM + support into one automated process. Tutorial video Watch the Youtube Tutorial video About me : I’m Yassin a Project & Product Manager Scaling tech products with data-driven project management. 📬 Feel free to connect with me on Linkedin

Provision new employee accounts to Google Workspace, Slack, Jira, and Salesforce

Provision new employee accounts to Google Workspace, Slack, Jira, and Salesforce This workflow streamlines the employee onboarding process by automatically provisioning user accounts across your organization's tech stack. By connecting HR input to IT operations, it eliminates manual data entry, reduces errors, and ensures new hires have access to the right tools from day one. Depending on the employee's department, the workflow intelligently routes the provisioning process to create specific accounts (e.g., Jira for Engineering, Salesforce for Sales) alongside standard company-wide access. Who is it for IT Administrators** looking to automate identity management and access provisioning. HR Operations Managers** who want to speed up the onboarding handover process. Startup Founders** needing a scalable way to manage new hire accounts without expensive SaaS management tools. How it works Data Intake: The workflow is triggered by a Webhook (connected to a form like Typeform, Google Forms, or BambooHR) containing the new hire's details. Configuration: A central "Set" node establishes global variables, such as the default temporary password, welcome email subject, and the main Slack channel ID. Core Provisioning: It simultaneously creates a Google Workspace account and invites the user to a general Slack channel. Department Routing: A generic logic switch checks the department field: If Engineering: It creates a Jira user. If Sales: It creates a Salesforce user. Notification: Once all accounts are successfully provisioned, the workflow uses a generic email service (Gmail node) to send a welcome email to the new employee with their login details. How to set up Credentials: You will need to configure credentials for the following nodes: Google Workspace Admin, Slack API, Jira Software, Salesforce, and Gmail (or your preferred email provider). Configuration: Open the node named ⚙️ CONFIGURATION. Update the Slack_Channel_ID (where new users are invited) and the Default_Password to match your company's security policy. Webhook: Copy the Webhook URL from the start node and add it to your HR form or applicant tracking system. Requirements n8n:** Version 1.0 or later recommended. Access:** Admin privileges for Google Workspace, Slack, Jira, and Salesforce to generate the necessary API keys/tokens. How to customize the workflow Add Departments:** Edit the "Check Department" Switch node to add routes for Marketing, Finance, etc., and connect them to relevant apps (e.g., HubSpot, Xero). Change Notification:** Swap the Gmail node for Microsoft Outlook or Slack DM depending on how you notify managers. Enhance Security:** Add a step to force a password reset on the first login if the identity provider supports it.

Build your own Jira Software and Salesforce integration

Create custom Jira Software and Salesforce workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

Jira Software supported actions

Changelog
Get issue changelog
Create
Create a new issue
Delete
Delete an issue
Get
Get an issue
Get Many
Get many issues
Notify
Create an email notification for an issue and add it to the mail queue
Status
Return either all transitions or a transition that can be performed by the user on an issue, based on the issue's status
Update
Update an issue
Add
Add attachment to issue
Get
Get an attachment
Get Many
Get many attachments
Remove
Remove an attachment
Add
Add comment to issue
Get
Get a comment
Get Many
Get many comments
Remove
Remove a comment
Update
Update a comment
Create
Create a new user
Delete
Delete a user
Get
Retrieve a user

Salesforce supported actions

Add Note
Add note to an account
Create
Create an account
Create or Update
Create a new account, or update the current one if it already exists (upsert)
Delete
Delete an account
Get
Get an account
Get Many
Get many accounts
Get Summary
Returns an overview of account's metadata
Update
Update an account
Create
Create a attachment
Delete
Delete a attachment
Get
Get a attachment
Get Many
Get many attachments
Get Summary
Returns an overview of attachment's metadata
Update
Update a attachment
Add Comment
Add a comment to a case
Create
Create a case
Delete
Delete a case
Get
Get a case
Get Many
Get many cases
Get Summary
Returns an overview of case's metadata
Update
Update a case
Add Contact To Campaign
Add contact to a campaign
Add Note
Add note to a contact
Create
Create a contact
Create or Update
Create a new contact, or update the current one if it already exists (upsert)
Delete
Delete a contact
Get
Get a contact
Get Many
Get many contacts
Get Summary
Returns an overview of contact's metadata
Update
Update a contact
Create
Create a custom object record
Create or Update
Create a new record, or update the current one if it already exists (upsert)
Delete
Delete a custom object record
Get
Get a custom object record
Get Many
Get many custom object records
Update
Update a custom object record
Upload
Upload a document
Get Many
Get many flows
Invoke
Invoke a flow
Add Lead To Campaign
Add lead to a campaign
Add Note
Add note to a lead
Create
Create a lead
Create or Update
Create a new lead, or update the current one if it already exists (upsert)
Delete
Delete a lead
Get
Get a lead
Get Many
Get many leads
Get Summary
Returns an overview of Lead's metadata
Update
Update a lead
Add Note
Add note to an opportunity
Create
Create an opportunity
Create or Update
Create a new opportunity, or update the current one if it already exists (upsert)
Delete
Delete an opportunity
Get
Get an opportunity
Get Many
Get many opportunities
Get Summary
Returns an overview of opportunity's metadata
Update
Update an opportunity
Query
Execute a SOQL query that returns all the results in a single response
Create
Create a task
Delete
Delete a task
Get
Get a task
Get Many
Get many tasks
Get Summary
Returns an overview of task's metadata
Update
Update a task
Get
Get a user
Get Many
Get many users
Use case

Save engineering resources

Reduce time spent on customer integrations, engineer faster POCs, keep your customer-specific functionality separate from product all without having to code.

Learn more
Use case

Supercharge your CRM

Need a more powerful integration with your CRM? n8n lets you go beyond standard integrations offered by popular CRMs!

Learn more

FAQs

  • Can Jira Software connect with Salesforce?

  • Can I use Jira Software’s API with n8n?

  • Can I use Salesforce’s API with n8n?

  • Is n8n secure for integrating Jira Software and Salesforce?

  • How to get started with Jira Software and Salesforce integration in n8n.io?

Looking to integrate Jira Software and Salesforce in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate Jira Software with Salesforce

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon