Request for Jira-ServiceNow Integration Documentation

HARINATHSAK
Tera Contributor

Hi Team,

I hope you are doing well.

I’m looking for any documentation or guidance on integrating Jira with ServiceNow, specifically around API-based integration and best practices.

If you have any reference materials or documents, please share them.

Thank you,
Hari

2 REPLIES 2

pavani_paluri
Tera Guru

Hi @HARINATHSAK ,

 

 

If you want to connect Jira and ServiceNow, the cleanest way is through their APIs. You can either use ServiceNow IntegrationHub with the Jira Spoke or Atlassian’s ServiceNow app. Both let you sync issues/incidents back and forth.

Authentication → Use API tokens or OAuth, don’t hardcode passwords.
Field mapping → Decide which fields match (priority, status, comments).
Sync rules → Only sync what matters (e.g., Incidents → Bugs), not every update.
Error handling → Add retry logic and logging so you don’t lose updates.
Governance → Test in a sandbox first, document your flows, and keep it simple.

Think of it like this: ServiceNow handles ITSM, Jira handles dev work. The integration is just a translator that keeps both sides in sync without flooding either system.

 

Reference:

ServiceNow To Jira Integration Set Up guide - ServiceNow Community

Integrate with ServiceNow | Jira Service Management Cloud | Atlassian Support

 

Mark it helpful if this helps you to understand. Accept solution if this give you the answer you're looking for
Kind Regards,
Pavani P

Tanushree Maiti
Kilo Patron

Hi @HARINATHSAK 

 

Step by step instruction are given in these links:

Jira to ServiceNow integration Scripted REST API Jira WebHook

Atlassian Doc:Integrate with ServiceNow 

Servicenow Doc: Integrating with Jira Software Cloud 

https://www.youtube.com/watch?v=37iJjKz94Qw

 

Best Practices:

 

  • Use Service Accounts
    • Avoid using personal admin credentials..
    • Connect using dedicated service accounts with required permission rather than personal user accounts
  • Map Data Formats Carefully
    • Match drop-down choices (e.g., Jira "High" vs ServiceNow "1 - Critical").
    • Standardize time zones to UTC to avoid sync confusion.
  • Implement Conflict Resolution
    • Decide which system "wins" if both are updated simultaneously.
    • Use a "Master System" logic or timestamp-based logic for specific fields.
  • Filter Sensitive Data
    • Sync only "Work Notes" (internal) to Jira or "Comments" (public) based on your team's privacy needs.
    • Use field-level encryption for sensitive outbound payloads.
  • Error Handling & Logging
    • Build retry logic for temporary network failures.
    • Maintain a correlation ID (e.g., storing the Jira Issue ID in a ServiceNow field) to track linked records. 
  • Testing
  •           Always test in Sub-prod  servicenow instance before going to production
  •  

 

Please mark this response as Helpful & Accept it as solution if it assisted you with your question.
Regards
Tanushree Maiti
ServiceNow Technical Architect
Linkedin:
In this longer format video I show each step (and misstep) in integrating my personal Jira instance with a ServiceNow instance. While the integration instructions provided by ServiceNow are a starting point, this video shows how it's done with mistakes and all! #servicenow #jira #atlassianjira ...