Feedback:

jira

Use the jira operator to create or update an investigation in Jira.

Syntax

|jira <field or ID> [project="<project name>"] [issue="<ticket type>"]

<field or ID>

ThreatStream investigation ID field or ThreatStream investigation ID.

<project name> Jira project name. Enclose the value in single or double quotes.
<ticket type> Jira issue type. Enclose the value in single or double quotes.

Usage

You can use the jira operator to create or update an investigation in Jira, provided Jira has been integrated with your ThreatStream organization. The operator adds JIRA ID to results. If project and issue type are not specified, the update uses the default project and issue configured in the ThreatStream Jira integration settings.

Examples

Example 1: Create a Jira issue using an investigation ID without quotes.

Copy
|jira 123456

Example 2: Create a Jira issue using a single-quoted investigation ID.

Copy
|jira '123456'

Example 3: Create a Jira issue using a double-quoted investigation ID.

Copy
|jira "123456"

Example 4: Create a Jira issue from a calculated investigation ID field with specified project and issue type.

Copy
|calc ts_investigaion_id = 123456 |jira ts_investigaion_id project='INTS' issue ='Task'