ZelaxyDocs
Tool Integrations
Tool

Jira

Create, update, and search issues in Atlassian Jira

Jira

Full Jira integration for issue tracking — create issues, update status, search with JQL, assign users, and manage projects. Ideal for automated ticket management and DevOps workflows.

Overview

PropertyValue
Typejira
CategoryTool — Project Management
AuthOAuth 2.0 (Atlassian)

Operations

OperationDescription
Create IssueCreate a new issue (Bug, Story, Task, Epic)
Update IssueModify status, assignee, or fields
Search IssuesQuery issues using JQL
Get IssueFetch a specific issue by key
List ProjectsGet all accessible projects
Add CommentComment on an existing issue

Configuration

SettingTypeDescription
Atlassian AccountOAuthConnect your Jira workspace
ProjectProject selectorSelect a Jira project
Issue TypeDropdownBug, Story, Task, Epic, etc.
SummaryShort inputIssue title
DescriptionLong textIssue description
AssigneeShort inputUser email or ID
PriorityDropdownHighest, High, Medium, Low, Lowest
JQL QueryShort inputJira Query Language filter

Outputs

FieldTypeDescription
issueKeystringIssue key (e.g., PROJ-123)
issueIdstringIssue ID
contentstringIssue data or search results
urlstringDirect link to the issue

Example: Auto-Create Bug Reports from Errors

Workflow:

[Starter (webhook: error monitor)] → [Agent: Analyze Error] → [Jira: Create Issue]

Jira Configuration:

  • Project: Engineering
  • Issue Type: Bug
  • Summary: [Auto] {{agent.content.title}}
  • Description: {{agent.content.analysis}}\n\nStack trace:\n{{starter.input.stackTrace}}
  • Priority: High

Tips

  • JQL is powerfulproject = ENG AND status = "In Progress" AND assignee = currentUser()
  • Use with Agent — let AI analyze error logs and auto-classify bug severity
  • Webhook trigger — respond to Jira events (issue created, status changed)