---
sourceDocument: Australia Impact
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/impact

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia Impact

ft:clusterId :

    - ipact

bundleId :

    - ipact


---

# Configure Jira user story integration

# Configure Jira user story integration {#ariaid-title1}

* Release version: Australia
* 
* Updated May 5, 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read

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, `companyname` from `companyname.atlassian.net/jira`)

Role required: Scan Engine Admin (sn_se.scan_engine_admin)

## Procedure

Generate a Jira API token

1. Navigate to <https://id.atlassian.com/manage-profile/security/api-tokens>.
2. Select Create API Token, enter a name, and copy the token.

Configure the integration

3. Navigate to `sys_auth_profile_basic.list` and select New.  
   Create one basic auth record per user who will create Jira work items. Set Username to the user's Jira email address and paste the API token in Password.
4. Navigate to ALLImpactConfigurationScan Engine Properties and select the User Story Integration properties tab.
5. Set Integration Type to <kbd class="ph userinput">Jira</kbd> and populate the following fields: Project key, Domain name, Work item type.
6. Select Update.

## Jira integration script leading practices {#ariaid-title2}

The following leading practices are guidelines for creating Jira integration scripts.

### Script variables {#jira-integration-script-best-practices__section_cmf_l1w_djc}

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.
{#jira-integration-script-best-practices__table_dmf_l1w_djc__entry__2}

| 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. |
[Table 1. Available script variables]

{#jira-integration-script-best-practices__table_dmf_l1w_djc}

### Leading practices {#jira-integration-script-best-practices__section_emf_l1w_djc}

Map finding fields to Jira fields via payload
:   Set properties on the `payload` object 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, use `grFinding.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 `Key` and `workItemType` to 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.

*[\>]: and then


