Portal Community
What this node does: The Jira node provides full Jira REST API coverage across four resources: issue (7 operations), project (3 operations), user (2 operations), and sprint (4 operations, Jira Software only). All operations authenticate via API Token against your Jira Cloud or Server instance. Use JQL (Jira Query Language) for powerful, expressive issue searches across any combination of fields.

Resources & Operations (16 total)

issue 7 Operations

OperationDescription
issue/createCreate a new Jira issue (Bug, Task, Story, Epic, or Subtask) with full field support including description, priority, assignee, labels, components, and custom fields.
issue/getRetrieve a complete issue object by its key (e.g. ENG-142). Returns all fields, status, assignee, comments count, and linked issues.
issue/getManySearch for multiple issues using a JQL query string. Supports field selection and pagination.
issue/updateUpdate one or more fields on an existing issue. Only specified fields are changed; all other fields are preserved.
issue/deletePermanently delete an issue by key. Optionally deletes all subtasks along with the parent issue.
issue/addCommentAdd a comment to an issue. Supports plain text or Atlassian Document Format (ADF) for rich-text comments with mentions, code blocks, and panels.
issue/transitionMove an issue through its workflow by transition name (e.g. "In Progress", "In Review", "Done"). The node resolves the transition name to the correct transition ID automatically.

project 3 Operations

OperationDescription
project/getRetrieve details for a single project by its key, including name, description, project type, lead, and issue type schemes.
project/getManyList all Jira projects accessible to the authenticated user. Returns project keys, names, and types.
project/getStatusesGet all available statuses for each issue type in a project. Use this to discover valid transition names for issue/transition.

user 2 Operations

OperationDescription
user/getRetrieve a user's profile by their Jira account ID. Returns display name, email, avatar, and active status.
user/searchSearch for Jira users by name or email address. Returns matching user objects including their account IDs for use in issue assignment.

sprint 4 Operations (Jira Software)

OperationDescription
sprint/createCreate a new sprint on a Jira Software board. Set the sprint name, start date, end date, and goal.
sprint/getRetrieve a sprint by its ID. Returns name, state (active/closed/future), start date, end date, and goal.
sprint/getManyList all sprints for a Jira Software board. Filter by state: active, closed, or future.
sprint/addIssuesMove one or more issues to a specified sprint by passing an array of issue keys.

Key Use Cases

Authentication Setup

API Token, not password: Jira Cloud requires an API Token for authentication — your Atlassian account password is not accepted. Generate an API token at id.atlassian.com/manage-profile/security/api-tokens. Use your Atlassian account email as the Email field. For Jira Server/Data Center, use a Personal Access Token instead.

Three authentication properties are required for every operation:

In This Guide

Configuration

Complete property reference for all 16 operations. Includes JQL syntax guide and Atlassian Document Format notes for rich comment bodies.

Input & Output

Issue object schema, JQL search results format, transition response, and output ports.

Examples

Five real-world examples: bug from alert, JQL sprint search, PR-triggered transition, deployment comment, and sprint creation with backlog move.