update_issue
Modify existing Jira issues by updating fields like summary, description, priority, assignee, labels, and custom fields to reflect current status or requirements.
Instructions
Update fields of an existing Jira issue. TIP: Use get_create_metadata to discover available custom fields and their allowed values for the project.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueKey | Yes | The issue key to update (e.g., PROJ-123) | |
| summary | No | New summary/title - optional | |
| description | No | New description in ADF format or plain string - optional | |
| priority | No | New priority name - optional | |
| assignee | No | New assignee account ID or email (will auto-lookup account ID from email) - optional | |
| labels | No | New labels array - optional | |
| customFields | No | Custom fields as key-value pairs (e.g., {"customfield_10000": "value"}) - optional. Use get_create_metadata to discover available fields. |