Skip to main content
Description: Manage operations in Jira. Authentication:
  • See integration-specific authentication requirements
Available Actions: Examples:
Action: unknown
Example 1: Jira - Create Issue Create a new Jira issue (task, bug, feature, etc.). Supports both API token and OAuth authentication.
{
  "automationType": "jira",
  "nodeId": "jira-create-issue-001"
}
Example 2: Jira - Create Issue (OAuth) Create a new Jira issue using OAuth authentication. Instance URL is retrieved from OAuth token metadata.
{
  "automationType": "jira",
  "nodeId": "jira-create-issue-oauth-001"
}
Example 3: Jira - Update Issue Status Update the status of a Jira issue by transition ID.
{
  "automationType": "jira",
  "nodeId": "jira-update-status-001"
}
Example 4: Jira - Assign Issue Assign a Jira issue to a specific user.
{
  "automationType": "jira",
  "nodeId": "jira-assign-issue-001"
}
Example 5: Jira - Log Work Log time spent on a Jira issue.
{
  "automationType": "jira",
  "nodeId": "jira-log-work-001"
}
Example 6: Jira - Search Issues Search for Jira issues by status, priority, project, assignee, or reporter. Supports pagination.
{
  "automationType": "jira",
  "nodeId": "jira-search-issues-001"
}
Example 7: Jira - Add Comment Add a comment to a Jira issue.
{
  "automationType": "jira",
  "nodeId": "jira-add-comment-001"
}
Example 8: Jira - Create Feature Issue Create a new feature issue in Jira.
{
  "automationType": "jira",
  "nodeId": "jira-create-feature-001"
}
Example 9: Jira - Create Bug Issue Create a new bug issue in Jira.
{
  "automationType": "jira",
  "nodeId": "jira-create-bug-001"
}
Example 10: Jira - Assign Issue by Account ID Assign a Jira issue using account ID instead of email.
{
  "automationType": "jira",
  "nodeId": "jira-assign-by-account-id-001"
}
Example 11: Jira - Search Issues by Status Search for issues with a specific status.
{
  "automationType": "jira",
  "nodeId": "jira-search-by-status-001"
}
Example 12: Jira - Search Issues by Priority Search for high priority issues.
{
  "automationType": "jira",
  "nodeId": "jira-search-by-priority-001"
}
Example 13: Jira - Search Issues by Assignee Search for issues assigned to a specific user.
{
  "automationType": "jira",
  "nodeId": "jira-search-by-assignee-001"
}
Example 14: Jira - Log Work (Minimal) Log work time without a comment.
{
  "automationType": "jira",
  "nodeId": "jira-log-work-minimal-001"
}
Example 15: Jira - Add Comment with Visibility Add a comment with restricted visibility.
{
  "automationType": "jira",
  "nodeId": "jira-add-comment-visibility-001"
}
Third-Party Documentation: