Configure Jira user story integration
Configure the Jira user story integration to create work items in a Jira project directly from Scan Engine finding records.
Before you begin
Gather the following from your Jira environment:
- Jira Project Key
- Work item type
- Domain name: the subdomain of your Jira URL (for example,
companynamefromcompanyname.atlassian.net/jira)
Role required: Scan Engine Admin (sn_se.scan_engine_admin)
Procedure
Generate a Jira API token
Configure the integration
Jira integration script leading practices
The following leading practices are guidelines for creating Jira integration scripts.
Script variables
The Jira field mapping script runs on the ServiceNow instance at the time a work item is created. Use the following variables to populate Jira fields from finding data.
| Variable | Description |
|---|---|
payload |
The field mapping object sent to your Jira project. Set properties on this object to populate Jira fields. |
grFinding |
GlideRecord of the finding. Use this to read finding data for field mapping. |
workItemType |
The work item type selected for this integration. |
Key |
The Jira project key configured for this integration. |
Leading practices
- Map finding fields to Jira fields via payload
- Set properties on the
payloadobject that correspond to your Jira project's field structure. Consult your Jira project configuration or the Jira REST API documentation to confirm the exact field keys expected by your project. - Use grFinding to pull finding context
- Access finding details using standard GlideRecord methods on
grFinding. For example, usegrFinding.getValue('short_description')to read the finding's short description and map it to a Jira summary field. - Use Key and workItemType for dynamic routing
- If your Jira environment has multiple projects or issue types, use
KeyandworkItemTypeto conditionally route work items to the correct destination rather than hard-coding project keys in your script. - Enable ES12 mode for modern JavaScript
- To use modern JavaScript syntax, enable ECMAScript 2021 (ES12) mode in Scan Engine Properties before writing your mapping script.