Zum Inhalt springen
DeutschlandGPT

Jira

Create and manage Jira issues, sprints, and projects from workflows

Connect your Jira instance to create and manage issues, sprints, and projects directly from your workflows.

Authentication: API Key. Provide your Jira base URL, email, and API token when connecting.

Triggers

New Issue

Fires when a new issue is created in a monitored project.

OutputTypeDescription
issueIdstringInternal issue ID
issueKeystringIssue key (e.g. PROJ-123)
summarystringIssue title
issueTypestringIssue type (Bug, Story, Task, etc.)
projectKeystringProject key
projectNamestringProject name
statusstringCurrent status
prioritystringPriority level
assigneestringAssigned user
reporterstringReporter
labelsarrayIssue labels
createdAtstringCreation timestamp
updatedAtstringLast updated timestamp

Updated Issue

Fires when an existing issue is modified (status change, reassignment, etc.).

Same outputs as New Issue.

Comment Added

Fires when a comment is added to an issue.

OutputTypeDescription
issueKeystringIssue key
commentIdstringComment ID
authorstringComment author
bodystringComment text
createdAtstringComment timestamp

Sprint Started

Fires when a Jira sprint is started.

OutputTypeDescription
sprintIdnumberSprint ID
sprintNamestringSprint name
boardIdnumberBoard ID
startDatestringSprint start date
endDatestringSprint end date

Actions

Create Issue

Creates a new Jira issue.

InputRequiredDescription
Project KeyYesTarget project (e.g. PROJ)
Issue Type IDYesIssue type (Bug, Story, Task, etc.)
SummaryYesIssue title
DescriptionNoIssue description
Assignee IDNoUser to assign the issue to
Priority IDNoIssue priority
LabelsNoComma-separated labels
Due DateNoDue date (YYYY-MM-DD)
Parent KeyNoParent issue key (for subtasks)
OutputTypeDescription
issueIdstringCreated issue ID
issueKeystringCreated issue key (e.g. PROJ-124)
urlstringDirect link to the issue

Update Issue

Updates an existing issue's fields.

InputRequiredDescription
Issue ID or KeyYesIssue to update
SummaryNoNew title
DescriptionNoNew description
Priority IDNoNew priority
Assignee IDNoNew assignee
LabelsNoUpdated labels
Due DateNoNew due date

Get Issue

Retrieves a specific issue.

InputRequiredDescription
Issue ID or KeyYesIssue key (e.g. PROJ-123)
OutputTypeDescription
issueobjectFull issue object

Search for Issues (JQL)

Searches issues using Jira Query Language.

InputRequiredDescription
JQL QueryYesJQL query string (e.g. project = PROJ AND status = "In Progress")
OutputTypeDescription
issuesarrayMatching issue objects
totalnumberTotal number of matching issues

Add Comment

Adds a comment to an issue.

InputRequiredDescription
Issue ID or KeyYesIssue to comment on
BodyYesComment text
OutputTypeDescription
commentIdstringID of the new comment

Move Issue by Transition

Moves an issue to a new status by triggering a workflow transition.

InputRequiredDescription
Issue ID or KeyYesIssue to transition
Transition IDYesID of the transition to execute

Assign Issue

Assigns an issue to a user.

InputRequiredDescription
Issue ID or KeyYesIssue to assign
Assignee IDYesUser ID to assign to

Get Sprints

Returns sprints for a board.

InputRequiredDescription
Board IDYesJira board ID
StateNoFilter by state: active, future, closed
OutputTypeDescription
sprintsarraySprint objects with id, name, state, startDate, endDate

Get Sprint Issues

Returns issues in a specific sprint.

InputRequiredDescription
Sprint IDYesSprint ID
OutputTypeDescription
issuesarrayIssue objects in the sprint

Get Project

Retrieves project details.

InputRequiredDescription
Project KeyYesProject key
OutputTypeDescription
projectobjectProject info with key, name, description, lead

Create Subtask

Creates a subtask under a parent issue.

InputRequiredDescription
Parent KeyYesParent issue key
SummaryYesSubtask title
DescriptionNoSubtask description
OutputTypeDescription
issueKeystringNew subtask key
Was this page helpful?