Skip to main content
FuseFuse
IntegrationsJiraActions

List assignable Jira users

List users assignable to a Jira project or issue by account id.

Agent markdown

users.assignable.list · Jira · v1

Details

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

Scopes

  • read:jira-user
  • offline_access

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false; oneOf branch 1: required project_id_or_key / branch 2: required issue_id_or_key
project_id_or_keystringNominLength 1; maxLength 64
issue_id_or_keystringNominLength 1; maxLength 64
querystringNominLength 1; maxLength 200
max_resultsintegerNominimum 1; maximum 50

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
usersarray<object>YesmaxItems 50
users[]objectYesadditionalProperties false
users[].account_idstringNominLength 1; maxLength 128
users[].display_namestringNomaxLength 255
users[].activebooleanNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "project_id_or_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "issue_id_or_key": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "query": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200
    },
    "max_results": {
      "type": "integer",
      "minimum": 1,
      "maximum": 50
    }
  },
  "oneOf": [
    {
      "required": [
        "project_id_or_key"
      ]
    },
    {
      "required": [
        "issue_id_or_key"
      ]
    }
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "users": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "account_id": {
            "type": "string",
            "minLength": 1,
            "maxLength": 128
          },
          "display_name": {
            "type": "string",
            "maxLength": 255
          },
          "active": {
            "type": "boolean"
          }
        }
      },
      "maxItems": 50
    }
  },
  "required": [
    "users"
  ]
}