Mandala
Tools

Jira

Interact with Jira

Usage Instructions

Integrate Jira into the workflow. Can read, write, and update issues. Can also trigger workflows based on Jira webhook events.

Tools

jira_retrieve

Retrieve detailed information about a specific Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringNoJira project ID (optional; not required to retrieve a single issue).
issueKeystringYesJira issue key to retrieve (e.g., PROJ-123)
cloudIdstringNoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key (e.g., PROJ-123)
summarystringIssue summary
descriptionjsonIssue description content
createdstringIssue creation timestamp
updatedstringIssue last updated timestamp
issuejsonComplete issue object with all fields

jira_update

Update a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringNoJira project ID to update issues in. If not provided, all issues will be retrieved.
issueKeystringYesJira issue key to update
summarystringNoNew summary for the issue
descriptionstringNoNew description for the issue
statusstringNoNew status for the issue
prioritystringNoNew priority for the issue
assigneestringNoNew assignee for the issue
cloudIdstringNoJira Cloud ID for the instance. If not provided, it will be fetched using the domain.

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringUpdated issue key (e.g., PROJ-123)
summarystringIssue summary after update

jira_write

Write a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringYesProject ID for the issue
summarystringYesSummary for the issue
descriptionstringNoDescription for the issue
prioritystringNoPriority ID or name for the issue (e.g., "10000" or "High")
assigneestringNoAssignee account ID for the issue
labelsarrayNoLabels for the issue (array of label names)
duedatestringNoDue date for the issue (format: YYYY-MM-DD)
reporterstringNoReporter account ID for the issue
environmentstringNoEnvironment information for the issue
customFieldIdstringNoCustom field ID (e.g., customfield_10001)
customFieldValuestringNoValue for the custom field

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringCreated issue key (e.g., PROJ-123)
summarystringIssue summary
urlstringURL to the created issue
assigneeIdstringAccount ID of the assigned user (if assigned)

jira_bulk_read

Retrieve multiple Jira issues in bulk

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
projectIdstringYesJira project ID
cloudIdstringNoJira cloud ID

Output

ParameterTypeDescription
issuesarrayArray of Jira issues with ts, summary, description, created, and updated timestamps

jira_delete_issue

Delete a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to delete (e.g., PROJ-123)
deleteSubtasksbooleanNoWhether to delete subtasks. If false, parent issues with subtasks cannot be deleted.

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringDeleted issue key

jira_assign_issue

Assign a Jira issue to a user

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to assign (e.g., PROJ-123)
accountIdstringYesAccount ID of the user to assign the issue to. Use "-1" for automatic assignment or null to unassign.

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key that was assigned
assigneeIdstringAccount ID of the assignee

jira_transition_issue

Move a Jira issue between workflow statuses (e.g., To Do -> In Progress)

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to transition (e.g., PROJ-123)
transitionIdstringYesID of the transition to execute (e.g., "11" for "To Do", "21" for "In Progress")
commentstringNoOptional comment to add when transitioning the issue

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key that was transitioned
transitionIdstringApplied transition ID

jira_search_issues

Search for Jira issues using JQL (Jira Query Language)

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
jqlstringYesJQL query string to search for issues (e.g., "project = PROJ AND status = Open")
startAtnumberNoThe index of the first result to return (for pagination)
maxResultsnumberNoMaximum number of results to return (default: 50)
fieldsarrayNoArray of field names to return (default: ['summary', 'status', 'assignee', 'created', 'updated'])

Output

ParameterTypeDescription
tsstringTimestamp of the operation
totalnumberTotal number of matching issues
startAtnumberPagination start index
maxResultsnumberMaximum results per page
issuesarrayArray of matching issues with key, summary, status, assignee, created, updated

jira_add_comment

Add a comment to a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to add comment to (e.g., PROJ-123)
bodystringYesComment body text

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key the comment was added to
commentIdstringCreated comment ID
bodystringComment text content

jira_get_comments

Get all comments from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to get comments from (e.g., PROJ-123)
startAtnumberNoIndex of the first comment to return (default: 0)
maxResultsnumberNoMaximum number of comments to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
totalnumberTotal number of comments
commentsarrayArray of comments with id, author, body, created, updated

jira_update_comment

Update an existing comment on a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key containing the comment (e.g., PROJ-123)
commentIdstringYesID of the comment to update
bodystringYesUpdated comment text

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
commentIdstringUpdated comment ID
bodystringUpdated comment text

jira_delete_comment

Delete a comment from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key containing the comment (e.g., PROJ-123)
commentIdstringYesID of the comment to delete

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
commentIdstringDeleted comment ID

jira_get_attachments

Get all attachments from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to get attachments from (e.g., PROJ-123)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
attachmentsarrayArray of attachments with id, filename, size, mimeType, created, author

jira_delete_attachment

Delete an attachment from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
attachmentIdstringYesID of the attachment to delete

Output

ParameterTypeDescription
tsstringTimestamp of the operation
attachmentIdstringDeleted attachment ID

jira_add_worklog

Add a time tracking worklog entry to a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to add worklog to (e.g., PROJ-123)
timeSpentSecondsnumberYesTime spent in seconds
commentstringNoOptional comment for the worklog entry
startedstringNoOptional start time in ISO format (defaults to current time)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key the worklog was added to
worklogIdstringCreated worklog ID
timeSpentSecondsnumberTime spent in seconds

jira_get_worklogs

Get all worklog entries from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to get worklogs from (e.g., PROJ-123)
startAtnumberNoIndex of the first worklog to return (default: 0)
maxResultsnumberNoMaximum number of worklogs to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
totalnumberTotal number of worklogs
worklogsarrayArray of worklogs with id, author, timeSpentSeconds, timeSpent, comment, created, updated, started

jira_update_worklog

Update an existing worklog entry on a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key containing the worklog (e.g., PROJ-123)
worklogIdstringYesID of the worklog entry to update
timeSpentSecondsnumberNoTime spent in seconds
commentstringNoOptional comment for the worklog entry
startedstringNoOptional start time in ISO format

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
worklogIdstringUpdated worklog ID

jira_delete_worklog

Delete a worklog entry from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key containing the worklog (e.g., PROJ-123)
worklogIdstringYesID of the worklog entry to delete

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
worklogIdstringDeleted worklog ID

Create a link relationship between two Jira issues

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
inwardIssueKeystringYesJira issue key for the inward issue (e.g., PROJ-123)
outwardIssueKeystringYesJira issue key for the outward issue (e.g., PROJ-456)
linkTypestringYesThe type of link relationship (e.g., "Blocks", "Relates to", "Duplicates")
commentstringNoOptional comment to add to the issue link

Output

ParameterTypeDescription
tsstringTimestamp of the operation
inwardIssuestringInward issue key
outwardIssuestringOutward issue key
linkTypestringType of issue link
linkIdstringCreated link ID

Delete a link between two Jira issues

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
linkIdstringYesID of the issue link to delete

Output

ParameterTypeDescription
tsstringTimestamp of the operation
linkIdstringDeleted link ID

jira_add_watcher

Add a watcher to a Jira issue to receive notifications about updates

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to add watcher to (e.g., PROJ-123)
accountIdstringYesAccount ID of the user to add as watcher

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
watcherAccountIdstringAdded watcher account ID

jira_remove_watcher

Remove a watcher from a Jira issue

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
issueKeystringYesJira issue key to remove watcher from (e.g., PROJ-123)
accountIdstringYesAccount ID of the user to remove as watcher

Output

ParameterTypeDescription
tsstringTimestamp of the operation
issueKeystringIssue key
watcherAccountIdstringRemoved watcher account ID

jira_get_users

Get Jira users. If an account ID is provided, returns a single user. Otherwise, returns a list of all users.

Input

ParameterTypeRequiredDescription
domainstringYesYour Jira domain (e.g., yourcompany.atlassian.net)
accountIdstringNoOptional account ID to get a specific user. If not provided, returns all users.
startAtnumberNoThe index of the first user to return (for pagination, default: 0)
maxResultsnumberNoMaximum number of users to return (default: 50)

Output

ParameterTypeDescription
tsstringTimestamp of the operation
usersjsonArray of users with accountId, displayName, emailAddress, active status, and avatarUrls
totalnumberTotal number of users returned
startAtnumberPagination start index
maxResultsnumberMaximum results per page

Triggers

jira_issue_created

Trigger workflow when a new issue is created in Jira

Output

ParameterTypeDescription
webhookEventstringThe webhook event type (e.g., jira:issue_created, comment_created, worklog_created)
timestampnumberTimestamp of the webhook event
issue.idstringJira issue ID
issue.keystringJira issue key (e.g., PROJ-123)
issue.selfstringREST API URL for this issue
issue.fields.votesjsonVotes on this issue
issue.fields.labelsarrayArray of labels applied to this issue
issue.fields.status.namestringStatus name
issue.fields.status.idstringStatus ID
issue.fields.status.statusCategoryjsonStatus category information
issue.fields.createdstringIssue creation date (ISO format)
issue.fields.creator.displayNamestringCreator display name
issue.fields.creator.accountIdstringCreator account ID
issue.fields.creator.emailAddressstringCreator email address
issue.fields.duedatestringDue date for the issue
issue.fields.project.keystringProject key
issue.fields.project.namestringProject name
issue.fields.project.idstringProject ID
issue.fields.summarystringIssue summary/title
issue.fields.updatedstringLast updated date (ISO format)
issue.fields.watchesjsonWatchers information
issue.fields.assignee.displayNamestringAssignee display name
issue.fields.assignee.accountIdstringAssignee account ID
issue.fields.assignee.emailAddressstringAssignee email address
issue.fields.priority.namestringPriority name
issue.fields.priority.idstringPriority ID
issue.fields.progressjsonProgress tracking information
issue.fields.reporter.displayNamestringReporter display name
issue.fields.reporter.accountIdstringReporter account ID
issue.fields.reporter.emailAddressstringReporter email address
issue.fields.securitystringSecurity level
issue.fields.subtasksarrayArray of subtask objects
issue.fields.versionsarrayArray of affected versions
issue.fields.issuetype.namestringIssue type name
issue.fields.issuetype.idstringIssue type ID
webhookjsonWebhook metadata including provider, path, and raw payload
issue_event_type_namestringIssue event type name from Jira (only present in issue events)

jira_issue_updated

Trigger workflow when an issue is updated in Jira

Output

ParameterTypeDescription
webhookEventstringThe webhook event type (e.g., jira:issue_created, comment_created, worklog_created)
timestampnumberTimestamp of the webhook event
issue.idstringJira issue ID
issue.keystringJira issue key (e.g., PROJ-123)
issue.selfstringREST API URL for this issue
issue.fields.votesjsonVotes on this issue
issue.fields.labelsarrayArray of labels applied to this issue
issue.fields.status.namestringStatus name
issue.fields.status.idstringStatus ID
issue.fields.status.statusCategoryjsonStatus category information
issue.fields.createdstringIssue creation date (ISO format)
issue.fields.creator.displayNamestringCreator display name
issue.fields.creator.accountIdstringCreator account ID
issue.fields.creator.emailAddressstringCreator email address
issue.fields.duedatestringDue date for the issue
issue.fields.project.keystringProject key
issue.fields.project.namestringProject name
issue.fields.project.idstringProject ID
issue.fields.summarystringIssue summary/title
issue.fields.updatedstringLast updated date (ISO format)
issue.fields.watchesjsonWatchers information
issue.fields.assignee.displayNamestringAssignee display name
issue.fields.assignee.accountIdstringAssignee account ID
issue.fields.assignee.emailAddressstringAssignee email address
issue.fields.priority.namestringPriority name
issue.fields.priority.idstringPriority ID
issue.fields.progressjsonProgress tracking information
issue.fields.reporter.displayNamestringReporter display name
issue.fields.reporter.accountIdstringReporter account ID
issue.fields.reporter.emailAddressstringReporter email address
issue.fields.securitystringSecurity level
issue.fields.subtasksarrayArray of subtask objects
issue.fields.versionsarrayArray of affected versions
issue.fields.issuetype.namestringIssue type name
issue.fields.issuetype.idstringIssue type ID
webhookjsonWebhook metadata including provider, path, and raw payload
issue_event_type_namestringIssue event type name from Jira (only present in issue events)
changelog.idstringChangelog ID
changelog.itemsarrayArray of changed items. Each item contains field, fieldtype, from, fromString, to, toString

jira_issue_deleted

Trigger workflow when an issue is deleted in Jira

Output

ParameterTypeDescription
webhookEventstringThe webhook event type (e.g., jira:issue_created, comment_created, worklog_created)
timestampnumberTimestamp of the webhook event
issue.idstringJira issue ID
issue.keystringJira issue key (e.g., PROJ-123)
issue.selfstringREST API URL for this issue
issue.fields.votesjsonVotes on this issue
issue.fields.labelsarrayArray of labels applied to this issue
issue.fields.status.namestringStatus name
issue.fields.status.idstringStatus ID
issue.fields.status.statusCategoryjsonStatus category information
issue.fields.createdstringIssue creation date (ISO format)
issue.fields.creator.displayNamestringCreator display name
issue.fields.creator.accountIdstringCreator account ID
issue.fields.creator.emailAddressstringCreator email address
issue.fields.duedatestringDue date for the issue
issue.fields.project.keystringProject key
issue.fields.project.namestringProject name
issue.fields.project.idstringProject ID
issue.fields.summarystringIssue summary/title
issue.fields.updatedstringLast updated date (ISO format)
issue.fields.watchesjsonWatchers information
issue.fields.assignee.displayNamestringAssignee display name
issue.fields.assignee.accountIdstringAssignee account ID
issue.fields.assignee.emailAddressstringAssignee email address
issue.fields.priority.namestringPriority name
issue.fields.priority.idstringPriority ID
issue.fields.progressjsonProgress tracking information
issue.fields.reporter.displayNamestringReporter display name
issue.fields.reporter.accountIdstringReporter account ID
issue.fields.reporter.emailAddressstringReporter email address
issue.fields.securitystringSecurity level
issue.fields.subtasksarrayArray of subtask objects
issue.fields.versionsarrayArray of affected versions
issue.fields.issuetype.namestringIssue type name
issue.fields.issuetype.idstringIssue type ID
webhookjsonWebhook metadata including provider, path, and raw payload
issue_event_type_namestringIssue event type name from Jira (only present in issue events)

jira_issue_commented

Trigger workflow when a comment is added to a Jira issue

Output

ParameterTypeDescription
webhookEventstringThe webhook event type (e.g., jira:issue_created, comment_created, worklog_created)
timestampnumberTimestamp of the webhook event
issue.idstringJira issue ID
issue.keystringJira issue key (e.g., PROJ-123)
issue.selfstringREST API URL for this issue
issue.fields.votesjsonVotes on this issue
issue.fields.labelsarrayArray of labels applied to this issue
issue.fields.status.namestringStatus name
issue.fields.status.idstringStatus ID
issue.fields.status.statusCategoryjsonStatus category information
issue.fields.createdstringIssue creation date (ISO format)
issue.fields.creator.displayNamestringCreator display name
issue.fields.creator.accountIdstringCreator account ID
issue.fields.creator.emailAddressstringCreator email address
issue.fields.duedatestringDue date for the issue
issue.fields.project.keystringProject key
issue.fields.project.namestringProject name
issue.fields.project.idstringProject ID
issue.fields.summarystringIssue summary/title
issue.fields.updatedstringLast updated date (ISO format)
issue.fields.watchesjsonWatchers information
issue.fields.assignee.displayNamestringAssignee display name
issue.fields.assignee.accountIdstringAssignee account ID
issue.fields.assignee.emailAddressstringAssignee email address
issue.fields.priority.namestringPriority name
issue.fields.priority.idstringPriority ID
issue.fields.progressjsonProgress tracking information
issue.fields.reporter.displayNamestringReporter display name
issue.fields.reporter.accountIdstringReporter account ID
issue.fields.reporter.emailAddressstringReporter email address
issue.fields.securitystringSecurity level
issue.fields.subtasksarrayArray of subtask objects
issue.fields.versionsarrayArray of affected versions
issue.fields.issuetype.namestringIssue type name
issue.fields.issuetype.idstringIssue type ID
webhookjsonWebhook metadata including provider, path, and raw payload
comment.idstringComment ID
comment.bodystringComment text/body
comment.author.displayNamestringComment author display name
comment.author.accountIdstringComment author account ID
comment.author.emailAddressstringComment author email address
comment.createdstringComment creation date (ISO format)
comment.updatedstringComment last updated date (ISO format)

jira_worklog_created

Trigger workflow when time is logged on a Jira issue

Output

ParameterTypeDescription
webhookEventstringThe webhook event type (e.g., jira:issue_created, comment_created, worklog_created)
timestampnumberTimestamp of the webhook event
issue.idstringJira issue ID
issue.keystringJira issue key (e.g., PROJ-123)
issue.selfstringREST API URL for this issue
issue.fields.votesjsonVotes on this issue
issue.fields.labelsarrayArray of labels applied to this issue
issue.fields.status.namestringStatus name
issue.fields.status.idstringStatus ID
issue.fields.status.statusCategoryjsonStatus category information
issue.fields.createdstringIssue creation date (ISO format)
issue.fields.creator.displayNamestringCreator display name
issue.fields.creator.accountIdstringCreator account ID
issue.fields.creator.emailAddressstringCreator email address
issue.fields.duedatestringDue date for the issue
issue.fields.project.keystringProject key
issue.fields.project.namestringProject name
issue.fields.project.idstringProject ID
issue.fields.summarystringIssue summary/title
issue.fields.updatedstringLast updated date (ISO format)
issue.fields.watchesjsonWatchers information
issue.fields.assignee.displayNamestringAssignee display name
issue.fields.assignee.accountIdstringAssignee account ID
issue.fields.assignee.emailAddressstringAssignee email address
issue.fields.priority.namestringPriority name
issue.fields.priority.idstringPriority ID
issue.fields.progressjsonProgress tracking information
issue.fields.reporter.displayNamestringReporter display name
issue.fields.reporter.accountIdstringReporter account ID
issue.fields.reporter.emailAddressstringReporter email address
issue.fields.securitystringSecurity level
issue.fields.subtasksarrayArray of subtask objects
issue.fields.versionsarrayArray of affected versions
issue.fields.issuetype.namestringIssue type name
issue.fields.issuetype.idstringIssue type ID
webhookjsonWebhook metadata including provider, path, and raw payload
worklog.idstringWorklog entry ID
worklog.author.displayNamestringWorklog author display name
worklog.author.accountIdstringWorklog author account ID
worklog.author.emailAddressstringWorklog author email address
worklog.timeSpentstringTime spent (e.g., "2h 30m")
worklog.timeSpentSecondsnumberTime spent in seconds
worklog.commentstringWorklog comment/description
worklog.startedstringWhen the work was started (ISO format)

jira_webhook

Trigger workflow on any Jira webhook event

Output

ParameterTypeDescription
webhookEventstringThe webhook event type (e.g., jira:issue_created, comment_created, worklog_created)
timestampnumberTimestamp of the webhook event
issue.idstringJira issue ID
issue.keystringJira issue key (e.g., PROJ-123)
issue.selfstringREST API URL for this issue
issue.fields.votesjsonVotes on this issue
issue.fields.labelsarrayArray of labels applied to this issue
issue.fields.status.namestringStatus name
issue.fields.status.idstringStatus ID
issue.fields.status.statusCategoryjsonStatus category information
issue.fields.createdstringIssue creation date (ISO format)
issue.fields.creator.displayNamestringCreator display name
issue.fields.creator.accountIdstringCreator account ID
issue.fields.creator.emailAddressstringCreator email address
issue.fields.duedatestringDue date for the issue
issue.fields.project.keystringProject key
issue.fields.project.namestringProject name
issue.fields.project.idstringProject ID
issue.fields.summarystringIssue summary/title
issue.fields.updatedstringLast updated date (ISO format)
issue.fields.watchesjsonWatchers information
issue.fields.assignee.displayNamestringAssignee display name
issue.fields.assignee.accountIdstringAssignee account ID
issue.fields.assignee.emailAddressstringAssignee email address
issue.fields.priority.namestringPriority name
issue.fields.priority.idstringPriority ID
issue.fields.progressjsonProgress tracking information
issue.fields.reporter.displayNamestringReporter display name
issue.fields.reporter.accountIdstringReporter account ID
issue.fields.reporter.emailAddressstringReporter email address
issue.fields.securitystringSecurity level
issue.fields.subtasksarrayArray of subtask objects
issue.fields.versionsarrayArray of affected versions
issue.fields.issuetype.namestringIssue type name
issue.fields.issuetype.idstringIssue type ID
webhookjsonWebhook metadata including provider, path, and raw payload
issue_event_type_namestringIssue event type name from Jira (only present in issue events)
changelog.idstringChangelog ID
changelog.itemsarrayArray of changed items. Each item contains field, fieldtype, from, fromString, to, toString
comment.idstringComment ID
comment.bodystringComment text/body
comment.author.displayNamestringComment author display name
comment.author.accountIdstringComment author account ID
comment.author.emailAddressstringComment author email address
comment.createdstringComment creation date (ISO format)
comment.updatedstringComment last updated date (ISO format)
worklog.idstringWorklog entry ID
worklog.author.displayNamestringWorklog author display name
worklog.author.accountIdstringWorklog author account ID
worklog.author.emailAddressstringWorklog author email address
worklog.timeSpentstringTime spent (e.g., "2h 30m")
worklog.timeSpentSecondsnumberTime spent in seconds
worklog.commentstringWorklog comment/description
worklog.startedstringWhen the work was started (ISO format)

Notes

  • Category: tools
  • Type: jira
Jira