Connect to Jira, create and update issues, run JQL searches, and sync workflows between Genesis and Jira.
Authenticate & Connect
Create & Update Issues
Search with JQL
Workflow Transitions
Project Context
jira_connector
Name | Definition | Format |
---|---|---|
action | Operation to perform. Supported: authenticate , create_issue , update_issue , get_issue , search_issues , get_projects , create_project , get_workflows , transition_issue . | String (required) |
jira_url | Base URL of the Jira instance. Example: https://yourcompany.atlassian.net . | String |
username | Jira username or email for authentication. | String |
api_token | API token or password for authentication. | String |
project_key | Project key for issue actions. | String |
issue_key | Specific issue key for get, update, or transition. | String |
issue_type | Type for new issues. Common: Bug , Task , Story , Epic , Subtask . | String |
summary | Title for the issue. | String |
description | Detailed description body. | String |
assignee | Username or account id to assign. | String |
priority | Priority value. Common: Highest , High , Medium , Low , Lowest . | String |
labels | Labels to apply. | Array of strings |
custom_fields | Map of custom field ids to values. | Object |
transition_id | Workflow transition id when moving status. | String |
jql_query | JQL for search operations. | String |
max_results | Maximum number of results to return. | Integer |
Bug
in the correct project with context attached.In Progress
or Done
when Genesis tasks are started or completed.jira_url
, username
, and api_token
to establish a session.create_issue
, update_issue
, get_issue
, and transition_issue
as tasks progress.search_issues
with jql_query
to produce lists for dashboards or alerts.get_projects
and get_workflows
to discover valid types, fields, and transitions.get_issue
on a known ticket or the Jira REST API browser to confirm field ids before automating writes.project_key
, issue_type
, and custom field ids to the project configuration.transition_id
for the issue’s current status.max_results
and offsets.