Manage relationship tracking, data cleaning, and contextual insights for AI applications using Jira.
No reviews yet. Be the first to review!
Sign in to join the conversation
Retrieve the account ID of a user based on their email address. Parameters: email (string)
Fetch and return a list of all available issue types along with their id, name, description, and subtask status. No parameters required.
Fetch and return a list of all available issue link types along with their id, name, and inward/outward descriptions. No parameters required.
Retrieve all issues associated with a specific project. Parameters: projectKey (string)
Retrieve issues in a project based on JQL (Jira Query Language) filtering. Parameters: projectKey (string), jql (string)
Retrieve issues assigned to a specific user in a project. Parameters: projectKey (string), jql (string)
Create a new standard issue in a project. Parameters: projectKey (string), summary (string), issueType (string), description (string), assignee (string), labels (array), components (array), priority (string)
Create a new subtask under a specified parent issue. Parameters: parent (string), projectKey (string), summary (string), issueType (string), description (string), assignee (string)
Update fields of an existing issue. Parameters: issueKey (string), summary (string), description (string), assignee (string), status (string), priority (string)
Create a link between two issues, specifying the type of link. Parameters: linkType (string), inwardIssueKey (string), outwardIssueKey (string)
Delete a specific issue by its key. Parameters: issueKey (string)
Delete a specific issue along with its subtasks. Parameters: issueKey (string), deleteSubtasks (boolean)
Delete multiple issues specified by their keys. Parameters: issueKeys (array of strings)