assign_ticket
Assign Jira tickets to specific users using the account ID and issue key. Simplifies ticket management by automating assignment via the Jira API.
Instructions
Assign a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/assignee. Do not use markdown in your query.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accountId | Yes | The account id of the assignee | |
issueIdOrKey | Yes | The issue id or key |
Input Schema (JSON Schema)
{
"properties": {
"accountId": {
"description": "The account id of the assignee",
"type": "string"
},
"issueIdOrKey": {
"description": "The issue id or key",
"type": "string"
}
},
"required": [
"accountId",
"issueIdOrKey"
],
"type": "object"
}