IntegrationsJiraActions
Assign Jira issue
Assign a Jira issue by Atlassian account id.
issues.assign · Jira · v1
Details
Scopes
write:jira-workoffline_access
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
issue_id_or_key | string | Yes | minLength 1; maxLength 64 |
account_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
issue_id_or_key | string | Yes | minLength 1; maxLength 64 |
account_id | string | Yes | minLength 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"
]
}