Integrate Jira into the workflow. Can read, write, and update issues. Can also trigger workflows based on Jira webhook events.
Retrieve detailed information about a specific Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | No | Jira project ID (optional; not required to retrieve a single issue). |
issueKey | string | Yes | Jira issue key to retrieve (e.g., PROJ-123) |
cloudId | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key (e.g., PROJ-123) |
summary | string | Issue summary |
description | json | Issue description content |
created | string | Issue creation timestamp |
updated | string | Issue last updated timestamp |
issue | json | Complete issue object with all fields |
Update a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | No | Jira project ID to update issues in. If not provided, all issues will be retrieved. |
issueKey | string | Yes | Jira issue key to update |
summary | string | No | New summary for the issue |
description | string | No | New description for the issue |
status | string | No | New status for the issue |
priority | string | No | New priority for the issue |
assignee | string | No | New assignee for the issue |
cloudId | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Updated issue key (e.g., PROJ-123) |
summary | string | Issue summary after update |
Write a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Yes | Project ID for the issue |
summary | string | Yes | Summary for the issue |
description | string | No | Description for the issue |
priority | string | No | Priority ID or name for the issue (e.g., "10000" or "High") |
assignee | string | No | Assignee account ID for the issue |
labels | array | No | Labels for the issue (array of label names) |
duedate | string | No | Due date for the issue (format: YYYY-MM-DD) |
reporter | string | No | Reporter account ID for the issue |
environment | string | No | Environment information for the issue |
customFieldId | string | No | Custom field ID (e.g., customfield_10001) |
customFieldValue | string | No | Value for the custom field |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Created issue key (e.g., PROJ-123) |
summary | string | Issue summary |
url | string | URL to the created issue |
assigneeId | string | Account ID of the assigned user (if assigned) |
Retrieve multiple Jira issues in bulk
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Yes | Jira project ID |
cloudId | string | No | Jira cloud ID |
| Parameter | Type | Description |
|---|
issues | array | Array of Jira issues with ts, summary, description, created, and updated timestamps |
Delete a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to delete (e.g., PROJ-123) |
deleteSubtasks | boolean | No | Whether to delete subtasks. If false, parent issues with subtasks cannot be deleted. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Deleted issue key |
Assign a Jira issue to a user
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to assign (e.g., PROJ-123) |
accountId | string | Yes | Account ID of the user to assign the issue to. Use "-1" for automatic assignment or null to unassign. |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key that was assigned |
assigneeId | string | Account ID of the assignee |
Move a Jira issue between workflow statuses (e.g., To Do -> In Progress)
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to transition (e.g., PROJ-123) |
transitionId | string | Yes | ID of the transition to execute (e.g., "11" for "To Do", "21" for "In Progress") |
comment | string | No | Optional comment to add when transitioning the issue |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key that was transitioned |
transitionId | string | Applied transition ID |
Search for Jira issues using JQL (Jira Query Language)
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
jql | string | Yes | JQL query string to search for issues (e.g., "project = PROJ AND status = Open") |
startAt | number | No | The index of the first result to return (for pagination) |
maxResults | number | No | Maximum number of results to return (default: 50) |
fields | array | No | Array of field names to return (default: ['summary', 'status', 'assignee', 'created', 'updated']) |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
total | number | Total number of matching issues |
startAt | number | Pagination start index |
maxResults | number | Maximum results per page |
issues | array | Array of matching issues with key, summary, status, assignee, created, updated |
Add a comment to a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to add comment to (e.g., PROJ-123) |
body | string | Yes | Comment body text |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key the comment was added to |
commentId | string | Created comment ID |
body | string | Comment text content |
Get all comments from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to get comments from (e.g., PROJ-123) |
startAt | number | No | Index of the first comment to return (default: 0) |
maxResults | number | No | Maximum number of comments to return (default: 50) |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
total | number | Total number of comments |
comments | array | Array of comments with id, author, body, created, updated |
Update an existing comment on a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key containing the comment (e.g., PROJ-123) |
commentId | string | Yes | ID of the comment to update |
body | string | Yes | Updated comment text |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
commentId | string | Updated comment ID |
body | string | Updated comment text |
Delete a comment from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key containing the comment (e.g., PROJ-123) |
commentId | string | Yes | ID of the comment to delete |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
commentId | string | Deleted comment ID |
Get all attachments from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to get attachments from (e.g., PROJ-123) |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
attachments | array | Array of attachments with id, filename, size, mimeType, created, author |
Delete an attachment from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
attachmentId | string | Yes | ID of the attachment to delete |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
attachmentId | string | Deleted attachment ID |
Add a time tracking worklog entry to a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to add worklog to (e.g., PROJ-123) |
timeSpentSeconds | number | Yes | Time spent in seconds |
comment | string | No | Optional comment for the worklog entry |
started | string | No | Optional start time in ISO format (defaults to current time) |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key the worklog was added to |
worklogId | string | Created worklog ID |
timeSpentSeconds | number | Time spent in seconds |
Get all worklog entries from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to get worklogs from (e.g., PROJ-123) |
startAt | number | No | Index of the first worklog to return (default: 0) |
maxResults | number | No | Maximum number of worklogs to return (default: 50) |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
total | number | Total number of worklogs |
worklogs | array | Array of worklogs with id, author, timeSpentSeconds, timeSpent, comment, created, updated, started |
Update an existing worklog entry on a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key containing the worklog (e.g., PROJ-123) |
worklogId | string | Yes | ID of the worklog entry to update |
timeSpentSeconds | number | No | Time spent in seconds |
comment | string | No | Optional comment for the worklog entry |
started | string | No | Optional start time in ISO format |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
worklogId | string | Updated worklog ID |
Delete a worklog entry from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key containing the worklog (e.g., PROJ-123) |
worklogId | string | Yes | ID of the worklog entry to delete |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
worklogId | string | Deleted worklog ID |
Create a link relationship between two Jira issues
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
inwardIssueKey | string | Yes | Jira issue key for the inward issue (e.g., PROJ-123) |
outwardIssueKey | string | Yes | Jira issue key for the outward issue (e.g., PROJ-456) |
linkType | string | Yes | The type of link relationship (e.g., "Blocks", "Relates to", "Duplicates") |
comment | string | No | Optional comment to add to the issue link |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
inwardIssue | string | Inward issue key |
outwardIssue | string | Outward issue key |
linkType | string | Type of issue link |
linkId | string | Created link ID |
Delete a link between two Jira issues
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
linkId | string | Yes | ID of the issue link to delete |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
linkId | string | Deleted link ID |
Add a watcher to a Jira issue to receive notifications about updates
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to add watcher to (e.g., PROJ-123) |
accountId | string | Yes | Account ID of the user to add as watcher |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
watcherAccountId | string | Added watcher account ID |
Remove a watcher from a Jira issue
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
issueKey | string | Yes | Jira issue key to remove watcher from (e.g., PROJ-123) |
accountId | string | Yes | Account ID of the user to remove as watcher |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
issueKey | string | Issue key |
watcherAccountId | string | Removed watcher account ID |
Get Jira users. If an account ID is provided, returns a single user. Otherwise, returns a list of all users.
| Parameter | Type | Required | Description |
|---|
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
accountId | string | No | Optional account ID to get a specific user. If not provided, returns all users. |
startAt | number | No | The index of the first user to return (for pagination, default: 0) |
maxResults | number | No | Maximum number of users to return (default: 50) |
| Parameter | Type | Description |
|---|
ts | string | Timestamp of the operation |
users | json | Array of users with accountId, displayName, emailAddress, active status, and avatarUrls |
total | number | Total number of users returned |
startAt | number | Pagination start index |
maxResults | number | Maximum results per page |
Trigger workflow when a new issue is created in Jira
| Parameter | Type | Description |
|---|
webhookEvent | string | The webhook event type (e.g., jira:issue_created, comment_created, worklog_created) |
timestamp | number | Timestamp of the webhook event |
issue.id | string | Jira issue ID |
issue.key | string | Jira issue key (e.g., PROJ-123) |
issue.self | string | REST API URL for this issue |
issue.fields.votes | json | Votes on this issue |
issue.fields.labels | array | Array of labels applied to this issue |
issue.fields.status.name | string | Status name |
issue.fields.status.id | string | Status ID |
issue.fields.status.statusCategory | json | Status category information |
issue.fields.created | string | Issue creation date (ISO format) |
issue.fields.creator.displayName | string | Creator display name |
issue.fields.creator.accountId | string | Creator account ID |
issue.fields.creator.emailAddress | string | Creator email address |
issue.fields.duedate | string | Due date for the issue |
issue.fields.project.key | string | Project key |
issue.fields.project.name | string | Project name |
issue.fields.project.id | string | Project ID |
issue.fields.summary | string | Issue summary/title |
issue.fields.updated | string | Last updated date (ISO format) |
issue.fields.watches | json | Watchers information |
issue.fields.assignee.displayName | string | Assignee display name |
issue.fields.assignee.accountId | string | Assignee account ID |
issue.fields.assignee.emailAddress | string | Assignee email address |
issue.fields.priority.name | string | Priority name |
issue.fields.priority.id | string | Priority ID |
issue.fields.progress | json | Progress tracking information |
issue.fields.reporter.displayName | string | Reporter display name |
issue.fields.reporter.accountId | string | Reporter account ID |
issue.fields.reporter.emailAddress | string | Reporter email address |
issue.fields.security | string | Security level |
issue.fields.subtasks | array | Array of subtask objects |
issue.fields.versions | array | Array of affected versions |
issue.fields.issuetype.name | string | Issue type name |
issue.fields.issuetype.id | string | Issue type ID |
webhook | json | Webhook metadata including provider, path, and raw payload |
issue_event_type_name | string | Issue event type name from Jira (only present in issue events) |
Trigger workflow when an issue is updated in Jira
| Parameter | Type | Description |
|---|
webhookEvent | string | The webhook event type (e.g., jira:issue_created, comment_created, worklog_created) |
timestamp | number | Timestamp of the webhook event |
issue.id | string | Jira issue ID |
issue.key | string | Jira issue key (e.g., PROJ-123) |
issue.self | string | REST API URL for this issue |
issue.fields.votes | json | Votes on this issue |
issue.fields.labels | array | Array of labels applied to this issue |
issue.fields.status.name | string | Status name |
issue.fields.status.id | string | Status ID |
issue.fields.status.statusCategory | json | Status category information |
issue.fields.created | string | Issue creation date (ISO format) |
issue.fields.creator.displayName | string | Creator display name |
issue.fields.creator.accountId | string | Creator account ID |
issue.fields.creator.emailAddress | string | Creator email address |
issue.fields.duedate | string | Due date for the issue |
issue.fields.project.key | string | Project key |
issue.fields.project.name | string | Project name |
issue.fields.project.id | string | Project ID |
issue.fields.summary | string | Issue summary/title |
issue.fields.updated | string | Last updated date (ISO format) |
issue.fields.watches | json | Watchers information |
issue.fields.assignee.displayName | string | Assignee display name |
issue.fields.assignee.accountId | string | Assignee account ID |
issue.fields.assignee.emailAddress | string | Assignee email address |
issue.fields.priority.name | string | Priority name |
issue.fields.priority.id | string | Priority ID |
issue.fields.progress | json | Progress tracking information |
issue.fields.reporter.displayName | string | Reporter display name |
issue.fields.reporter.accountId | string | Reporter account ID |
issue.fields.reporter.emailAddress | string | Reporter email address |
issue.fields.security | string | Security level |
issue.fields.subtasks | array | Array of subtask objects |
issue.fields.versions | array | Array of affected versions |
issue.fields.issuetype.name | string | Issue type name |
issue.fields.issuetype.id | string | Issue type ID |
webhook | json | Webhook metadata including provider, path, and raw payload |
issue_event_type_name | string | Issue event type name from Jira (only present in issue events) |
changelog.id | string | Changelog ID |
changelog.items | array | Array of changed items. Each item contains field, fieldtype, from, fromString, to, toString |
Trigger workflow when an issue is deleted in Jira
| Parameter | Type | Description |
|---|
webhookEvent | string | The webhook event type (e.g., jira:issue_created, comment_created, worklog_created) |
timestamp | number | Timestamp of the webhook event |
issue.id | string | Jira issue ID |
issue.key | string | Jira issue key (e.g., PROJ-123) |
issue.self | string | REST API URL for this issue |
issue.fields.votes | json | Votes on this issue |
issue.fields.labels | array | Array of labels applied to this issue |
issue.fields.status.name | string | Status name |
issue.fields.status.id | string | Status ID |
issue.fields.status.statusCategory | json | Status category information |
issue.fields.created | string | Issue creation date (ISO format) |
issue.fields.creator.displayName | string | Creator display name |
issue.fields.creator.accountId | string | Creator account ID |
issue.fields.creator.emailAddress | string | Creator email address |
issue.fields.duedate | string | Due date for the issue |
issue.fields.project.key | string | Project key |
issue.fields.project.name | string | Project name |
issue.fields.project.id | string | Project ID |
issue.fields.summary | string | Issue summary/title |
issue.fields.updated | string | Last updated date (ISO format) |
issue.fields.watches | json | Watchers information |
issue.fields.assignee.displayName | string | Assignee display name |
issue.fields.assignee.accountId | string | Assignee account ID |
issue.fields.assignee.emailAddress | string | Assignee email address |
issue.fields.priority.name | string | Priority name |
issue.fields.priority.id | string | Priority ID |
issue.fields.progress | json | Progress tracking information |
issue.fields.reporter.displayName | string | Reporter display name |
issue.fields.reporter.accountId | string | Reporter account ID |
issue.fields.reporter.emailAddress | string | Reporter email address |
issue.fields.security | string | Security level |
issue.fields.subtasks | array | Array of subtask objects |
issue.fields.versions | array | Array of affected versions |
issue.fields.issuetype.name | string | Issue type name |
issue.fields.issuetype.id | string | Issue type ID |
webhook | json | Webhook metadata including provider, path, and raw payload |
issue_event_type_name | string | Issue event type name from Jira (only present in issue events) |
Trigger workflow when a comment is added to a Jira issue
| Parameter | Type | Description |
|---|
webhookEvent | string | The webhook event type (e.g., jira:issue_created, comment_created, worklog_created) |
timestamp | number | Timestamp of the webhook event |
issue.id | string | Jira issue ID |
issue.key | string | Jira issue key (e.g., PROJ-123) |
issue.self | string | REST API URL for this issue |
issue.fields.votes | json | Votes on this issue |
issue.fields.labels | array | Array of labels applied to this issue |
issue.fields.status.name | string | Status name |
issue.fields.status.id | string | Status ID |
issue.fields.status.statusCategory | json | Status category information |
issue.fields.created | string | Issue creation date (ISO format) |
issue.fields.creator.displayName | string | Creator display name |
issue.fields.creator.accountId | string | Creator account ID |
issue.fields.creator.emailAddress | string | Creator email address |
issue.fields.duedate | string | Due date for the issue |
issue.fields.project.key | string | Project key |
issue.fields.project.name | string | Project name |
issue.fields.project.id | string | Project ID |
issue.fields.summary | string | Issue summary/title |
issue.fields.updated | string | Last updated date (ISO format) |
issue.fields.watches | json | Watchers information |
issue.fields.assignee.displayName | string | Assignee display name |
issue.fields.assignee.accountId | string | Assignee account ID |
issue.fields.assignee.emailAddress | string | Assignee email address |
issue.fields.priority.name | string | Priority name |
issue.fields.priority.id | string | Priority ID |
issue.fields.progress | json | Progress tracking information |
issue.fields.reporter.displayName | string | Reporter display name |
issue.fields.reporter.accountId | string | Reporter account ID |
issue.fields.reporter.emailAddress | string | Reporter email address |
issue.fields.security | string | Security level |
issue.fields.subtasks | array | Array of subtask objects |
issue.fields.versions | array | Array of affected versions |
issue.fields.issuetype.name | string | Issue type name |
issue.fields.issuetype.id | string | Issue type ID |
webhook | json | Webhook metadata including provider, path, and raw payload |
comment.id | string | Comment ID |
comment.body | string | Comment text/body |
comment.author.displayName | string | Comment author display name |
comment.author.accountId | string | Comment author account ID |
comment.author.emailAddress | string | Comment author email address |
comment.created | string | Comment creation date (ISO format) |
comment.updated | string | Comment last updated date (ISO format) |
Trigger workflow when time is logged on a Jira issue
| Parameter | Type | Description |
|---|
webhookEvent | string | The webhook event type (e.g., jira:issue_created, comment_created, worklog_created) |
timestamp | number | Timestamp of the webhook event |
issue.id | string | Jira issue ID |
issue.key | string | Jira issue key (e.g., PROJ-123) |
issue.self | string | REST API URL for this issue |
issue.fields.votes | json | Votes on this issue |
issue.fields.labels | array | Array of labels applied to this issue |
issue.fields.status.name | string | Status name |
issue.fields.status.id | string | Status ID |
issue.fields.status.statusCategory | json | Status category information |
issue.fields.created | string | Issue creation date (ISO format) |
issue.fields.creator.displayName | string | Creator display name |
issue.fields.creator.accountId | string | Creator account ID |
issue.fields.creator.emailAddress | string | Creator email address |
issue.fields.duedate | string | Due date for the issue |
issue.fields.project.key | string | Project key |
issue.fields.project.name | string | Project name |
issue.fields.project.id | string | Project ID |
issue.fields.summary | string | Issue summary/title |
issue.fields.updated | string | Last updated date (ISO format) |
issue.fields.watches | json | Watchers information |
issue.fields.assignee.displayName | string | Assignee display name |
issue.fields.assignee.accountId | string | Assignee account ID |
issue.fields.assignee.emailAddress | string | Assignee email address |
issue.fields.priority.name | string | Priority name |
issue.fields.priority.id | string | Priority ID |
issue.fields.progress | json | Progress tracking information |
issue.fields.reporter.displayName | string | Reporter display name |
issue.fields.reporter.accountId | string | Reporter account ID |
issue.fields.reporter.emailAddress | string | Reporter email address |
issue.fields.security | string | Security level |
issue.fields.subtasks | array | Array of subtask objects |
issue.fields.versions | array | Array of affected versions |
issue.fields.issuetype.name | string | Issue type name |
issue.fields.issuetype.id | string | Issue type ID |
webhook | json | Webhook metadata including provider, path, and raw payload |
worklog.id | string | Worklog entry ID |
worklog.author.displayName | string | Worklog author display name |
worklog.author.accountId | string | Worklog author account ID |
worklog.author.emailAddress | string | Worklog author email address |
worklog.timeSpent | string | Time spent (e.g., "2h 30m") |
worklog.timeSpentSeconds | number | Time spent in seconds |
worklog.comment | string | Worklog comment/description |
worklog.started | string | When the work was started (ISO format) |
Trigger workflow on any Jira webhook event
| Parameter | Type | Description |
|---|
webhookEvent | string | The webhook event type (e.g., jira:issue_created, comment_created, worklog_created) |
timestamp | number | Timestamp of the webhook event |
issue.id | string | Jira issue ID |
issue.key | string | Jira issue key (e.g., PROJ-123) |
issue.self | string | REST API URL for this issue |
issue.fields.votes | json | Votes on this issue |
issue.fields.labels | array | Array of labels applied to this issue |
issue.fields.status.name | string | Status name |
issue.fields.status.id | string | Status ID |
issue.fields.status.statusCategory | json | Status category information |
issue.fields.created | string | Issue creation date (ISO format) |
issue.fields.creator.displayName | string | Creator display name |
issue.fields.creator.accountId | string | Creator account ID |
issue.fields.creator.emailAddress | string | Creator email address |
issue.fields.duedate | string | Due date for the issue |
issue.fields.project.key | string | Project key |
issue.fields.project.name | string | Project name |
issue.fields.project.id | string | Project ID |
issue.fields.summary | string | Issue summary/title |
issue.fields.updated | string | Last updated date (ISO format) |
issue.fields.watches | json | Watchers information |
issue.fields.assignee.displayName | string | Assignee display name |
issue.fields.assignee.accountId | string | Assignee account ID |
issue.fields.assignee.emailAddress | string | Assignee email address |
issue.fields.priority.name | string | Priority name |
issue.fields.priority.id | string | Priority ID |
issue.fields.progress | json | Progress tracking information |
issue.fields.reporter.displayName | string | Reporter display name |
issue.fields.reporter.accountId | string | Reporter account ID |
issue.fields.reporter.emailAddress | string | Reporter email address |
issue.fields.security | string | Security level |
issue.fields.subtasks | array | Array of subtask objects |
issue.fields.versions | array | Array of affected versions |
issue.fields.issuetype.name | string | Issue type name |
issue.fields.issuetype.id | string | Issue type ID |
webhook | json | Webhook metadata including provider, path, and raw payload |
issue_event_type_name | string | Issue event type name from Jira (only present in issue events) |
changelog.id | string | Changelog ID |
changelog.items | array | Array of changed items. Each item contains field, fieldtype, from, fromString, to, toString |
comment.id | string | Comment ID |
comment.body | string | Comment text/body |
comment.author.displayName | string | Comment author display name |
comment.author.accountId | string | Comment author account ID |
comment.author.emailAddress | string | Comment author email address |
comment.created | string | Comment creation date (ISO format) |
comment.updated | string | Comment last updated date (ISO format) |
worklog.id | string | Worklog entry ID |
worklog.author.displayName | string | Worklog author display name |
worklog.author.accountId | string | Worklog author account ID |
worklog.author.emailAddress | string | Worklog author email address |
worklog.timeSpent | string | Time spent (e.g., "2h 30m") |
worklog.timeSpentSeconds | number | Time spent in seconds |
worklog.comment | string | Worklog comment/description |
worklog.started | string | When the work was started (ISO format) |
- Category:
tools
- Type:
jira