Skip to main content
FuseFuse
IntegrationsJiraActions

Assign Jira issue

Assign a Jira issue by Atlassian account id.

Agent markdown

issues.assign · Jira · v1

Details

Risk
Write
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=true, openWorld=true

Scopes

  • write:jira-work
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
issue_id_or_keystringYesminLength 1; maxLength 64
account_idstringYesminLength 1; maxLength 128

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
issue_id_or_keystringYesminLength 1; maxLength 64
account_idstringYesminLength 1; maxLength 128

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "issue_id_or_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "account_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "issue_id_or_key",
    "account_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "issue_id_or_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "account_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    }
  },
  "required": [
    "issue_id_or_key",
    "account_id"
  ]
}