Jira: Update Issue Fields
jira_update_issue_fieldsUpdate Jira issue fields via REST API with support for custom fields and ADF documents. Provide correct field IDs and value shapes, such as accountId for user picker fields.
Instructions
Update Jira issue fields via /rest/api/3/issue/{key} PUT. Supports customfield_* and ADF docs. You must send correct field IDs and value shapes (e.g. user picker needs accountId).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | Yes | Fields object to set (e.g. { "customfield_10246": { accountId: "..." } }) | |
| update | No | Optional Jira "update" object for advanced updates | |
| issueKey | Yes | Issue key, e.g. WOR-2367 | |
| notifyUsers | No | Whether to notify users (Jira notifyUsers query param) | |
| validateAdf | No | If true, validates any ADF-like objects contain type/version/content | |
| overrideEditableFlag | No | Attempt to override editable flag (if permitted) | |
| overrideScreenSecurity | No | Attempt to override screen security (if permitted) |