Skip to content

Jira

The Jira node lets you interact with Jira Cloud for issue tracking and project management. A single node supports all operations — select the operation you need and the relevant fields appear.

All operations require a Jira connection configured with your domain, email, and API token.

Operations

Issues: Search (JQL)

Search for issues using Jira Query Language (JQL).

FieldDescriptionNotes
JQL QueryJQL expression to search for issuesRequired. Supports templates
Max ResultsMaximum number of issues to returnDefault: 50, max: 1000

JQL Examples:

project = PROJ AND status = "In Progress"
assignee = currentUser() AND updated >= -7d
labels IN ("bug", "critical") ORDER BY priority DESC

Returns an array of Jira issue objects with key, fields, id, etc.

Issues: Get

Retrieve a single issue by key.

FieldDescriptionNotes
Issue KeyThe issue key (e.g., PROJ-123)Required. Supports templates

Issues: Create

Create a new issue.

FieldDescriptionNotes
Project KeyProject to create the issue in (e.g., PROJ)Required. Supports templates
Issue TypeType name: Task, Bug, Story, etc.Optional — uses project default
SummaryIssue titleRequired. Supports templates
DescriptionIssue description (plain text)Optional. Auto-converted to Atlassian Document Format
Additional FieldsKey-value pairs for extra fields (priority, labels, assignee, etc.)Optional. Supports templates

Issues: Update

Update an existing issue's fields.

FieldDescriptionNotes
Issue KeyThe issue to updateRequired. Supports templates
DescriptionUpdated descriptionOptional
Additional FieldsFields to update as key-value pairsOptional

Issues: Transition

Move an issue to a new status (e.g., "To Do" to "In Progress").

FieldDescriptionNotes
Issue KeyThe issue to transitionRequired. Supports templates
Transition IDNumeric transition IDRequired. Supports templates

TIP

To find available transition IDs, use Issues: Get on an issue — the response includes available transitions. You can also find them in your Jira project's workflow configuration.

Issues: Add Comment

Add a comment to an issue.

FieldDescriptionNotes
Issue KeyThe issue to comment onRequired. Supports templates
DescriptionComment body (plain text)Required. Auto-converted to Atlassian Document Format

Issues: Delete

Delete an issue.

FieldDescriptionNotes
Issue KeyThe issue to deleteRequired. Supports templates

Projects: List

List all projects accessible to the authenticated user. No additional configuration needed.

Projects: Get

Get details for a specific project.

FieldDescriptionNotes
Project KeyProject key (e.g., PROJ)Required. Supports templates

Search for Jira users.

FieldDescriptionNotes
Max ResultsMaximum users to returnDefault: 50

Streaming

Search operations (Issues: Search, Projects: List, Users: Search) support streaming — each result is emitted individually to downstream nodes. Mutation operations process each upstream item sequentially.

Common Patterns

Search and Update

  1. Jira (Issues: Search) — find issues matching criteria
  2. Transform — compute new values
  3. Jira (Issues: Update) — apply changes to each issue

Create Issues from Data

  1. Google Sheets Read or DataStore Query — fetch source data
  2. Transform — map fields to Jira format
  3. Jira (Issues: Create) — create an issue per row