IntegrationsJiraActions
List assignable Jira users
List users assignable to a Jira project or issue by account id.
users.assignable.list · Jira · v1
Details
Scopes
read:jira-useroffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false; oneOf branch 1: required project_id_or_key / branch 2: required issue_id_or_key |
project_id_or_key | string | No | minLength 1; maxLength 64 |
issue_id_or_key | string | No | minLength 1; maxLength 64 |
query | string | No | minLength 1; maxLength 200 |
max_results | integer | No | minimum 1; maximum 50 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
users | array<object> | Yes | maxItems 50 |
users[] | object | Yes | additionalProperties false |
users[].account_id | string | No | minLength 1; maxLength 128 |
users[].display_name | string | No | maxLength 255 |
users[].active | boolean | No | — |
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"
]
}