Rate this page:
Forge apps can subscribe to Jira events for:
You can subscribe to these Jira issue events in Forge apps:
avi:jira:created:issue
avi:jira:updated:issue
avi:jira:assigned:issue
avi:jira:viewed:issue
avi:jira:mentioned:issue
Each event has a different payload format.
An event with the name avi:jira:created:issue
is sent when an issue is created.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event is related to. |
atlassianId | string | The ID of the user that has caused the event. |
associatedUsers | AssociatedUsers | An object containing an array of one user, with the user being the one who created the issue. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface AssociatedUsers {
associatedUsers: User[];
}
interface User {
accountId: string;
}
This is an example of a payload for a newly created issue:.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/2/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/2/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": null,
"updated": "2021-01-20T15:58:12.797+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/2/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/2/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"atlassianId": "4ad9aa0c52dc1b420a791d12",
"associatedUsers": [
{
"accountId": "4ad9aa0c52dc1b420a791d12"
}
]
}
An event with the name avi:jira:updated:issue
is sent when any field on an issue is modified.
The level of detail in the event's changelog depends on which field is changed.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event relates to. |
atlassianId | string | The ID of the user that has caused the event. |
changelog | Changelog |
A list of changes that have occurred in the update. The to and from
fields display the accounts IDs of the assignees that the issue was to and from respectively,
or null when the issue is unassigned or was previously unassigned.
|
associatedUsers | AssociatedUsers | An object containing an array of users, with the users being the one who made the update, and any assigned or unassigned users in the update being made. |
associatedStatuses? | AssociatedStatuses | [Optional] If the issue status is updated, this contains an array of the current and previous statuses. Otherwise, this field is undefined. You can tell which is the current status by checking the changelog field. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface Changelog {
items: Change[];
}
interface Change {
field: string;
fieldId: string;
from: string | null;
fromString: string | null;
to: string | null;
toString: string | null;
}
interface AssociatedUsers {
associatedUsers: User[];
}
interface User {
accountId: string;
}
This is an example of updating a project's description.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/3/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/3/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": null,
"updated": "2021-01-20T16:13:59.255+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/3/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/3/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"atlassianId": "4ad9aa0c52dc1b420a791d12",
"changelog": {
"id": "10154",
"items": [
{
"field": "description",
"fieldId": "description",
"from": null,
"fromString": null,
"to": null,
"toString": null
}
]
},
"associatedUsers": [
{
"accountId": "4ad9aa0c52dc1b420a791d12"
}
]
}
An event with the name avi:jira:assigned:issue
is sent when a user is assigned or unassigned from an issue.
An "issue updated" event will also be sent when this occurs.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event is related to. |
atlassianId | string | The ID of the user that has caused the event. |
changelog | Changelog |
A list of changes that have occurred in the update. The to and from
fields display the accounts IDs of the assignees that the issue was to and from respectively,
or null when the issue is unassigned or was previously unassigned.
|
associatedUsers | AssociatedUsers | An object containing an array of users, with the users being the one who made the update, and any users assigned or unassigned in the update being made. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface Changelog {
items: Change[];
}
interface Change {
field: string;
fieldId: string;
from: string | null;
fromString: string | null;
to: string | null;
toString: string | null;
}
interface AssociatedUsers {
associatedUsers: User[];
}
interface User {
accountId: string;
}
This is an example of assigning a user to a previously unassigned issue.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/3/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/3/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": {
"accountId": "123456:9af5200e-7667-459b-9c1f-38915c3644b9"
},
"updated": "2021-01-20T16:27:53.457+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/3/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/3/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"atlassianId": "4ad9aa0c52dc1b420a791d12",
"changelog": {
"id": "10159",
"items": [
{
"field": "assignee",
"fieldtype": "jira",
"fieldId": "assignee",
"from": null,
"fromString": null,
"to": "123456:9af5200e-7667-459b-9c1f-38915c3644b9",
"toString": null,
"tmpFromAccountId": null,
"tmpToAccountId": "123456:9af5200e-7667-459b-9c1f-38915c3644b9"
}
]
},
"associatedUsers": [
{
"accountId": "4ad9aa0c52dc1b420a791d12"
},
{
"accountId": "123456:9af5200e-7667-459b-9c1f-38915c3644b9"
}
]
}
An event with the name avi:jira:viewed:issue
is sent every time an issue is viewed by a user.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event is related to. |
atlassianId | string | The ID of the user that has caused the event. |
user | User | The user who has viewed the issue. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface User {
accountId: string;
}
This is an example of an issue's creator viewing the issue.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/2/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/2/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": null,
"updated": "2021-01-20T15:58:12.797+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/2/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/2/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"atlassianId": "4ad9aa0c52dc1b420a791d12",
"user": {
"accountId": "4ad9aa0c52dc1b420a791d12"
}
}
An event with the name avi:jira:mentioned:issue
is sent every time an issue description is updated and users are mentioned.
All users mentioned in the description are included in one event. A user mentioning themselves does not count as a mention.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event is related to. |
atlassianId | string | The ID of the user that has caused the event. |
mentionedAccountIds | string[] | A list of account IDs of mentioned users. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface User {
accountId: string;
}
This is an example of the issue's creator mentioning a different user in the issue's description.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/3/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/3/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": null,
"updated": "2021-01-20T16:34:44.233+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/3/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/3/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"mentionedAccountIds": ["123456:9af5200e-7667-459b-9c1f-38915c3644b9"],
"atlassianId": "4ad9aa0c52dc1b420a791d12"
}
Forge apps can subscribe to these Jira comment events:
avi:jira:commented:issue
avi:jira:mentioned:comment
An event with the name avi:jira:commented:issue
is sent each time a comment is created or edited.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event is related to. |
atlassianId | string | The ID of the user that has caused the event. |
associatedUsers | AssociatedUsers | The user who has made the comment. |
comment | Comment | An object describing the comment, including its author, body content, and other metadata. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface AssociatedUsers {
associatedUsers: User[];
}
interface Comment {
id: string;
author: User;
body: any;
updateAuthor: User;
created: string;
updated: string;
jsdPublic: boolean;
}
interface User {
accountId: string;
}
This is an example of the issue's creator adding a comment to the issue.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/3/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/3/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": null,
"updated": "2021-01-20T16:43:22.076+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/3/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/3/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"atlassianId": "4ad9aa0c52dc1b420a791d12",
"associatedUsers": [
{
"accountId": "4ad9aa0c52dc1b420a791d12"
}
],
"comment": {
"id": "10038",
"author": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"body": {
"version": 1,
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "This is a very normal comment"
}
]
}
]
},
"updateAuthor": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T16:43:44.320+1100",
"updated": "2021-01-20T16:43:44.320+1100",
"jsdPublic": true
}
}
An event with the name avi:jira:mentioned:issue
is sent each time users are mentioned when a comment is created or edited.
All users mentioned in the comment are included in one event.
Name | Type | Description |
---|---|---|
issue | Issue | The issue the event is related to. |
atlassianId | string | The ID of the user that has caused the event. |
mentionedAccountIds | string[] | A list of the account IDs of the users mentioned in the comment. |
comment | Comment | An object describing the comment, including its author, body content, and other metadata. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
interface Issue {
id: string;
key: string;
fields: {
summary?: string;
issueType?: any;
creator?: any;
created?: string;
project?: any;
reporter?: User;
assignee?: User | null;
updated?: string;
status?: any;
};
}
interface Comment {
id: string;
author: User;
body: any;
updateAuthor: User;
created: string;
updated: string;
jsdPublic: boolean;
}
interface User {
accountId: string;
}
This is an example of the issue's creator mentioning a different user in a comment.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
{
"issue": {
"id": "10073",
"key": "SP-10",
"fields": {
"summary": "A descriptive title",
"issuetype": {
"self": "https://example.atlassian.net/rest/api/3/issuetype/10001",
"id": "10001",
"description": "Functionality or a feature expressed as a user goal.",
"iconUrl": "https://example.atlassian.net/secure/viewavatar?size=medium&avatarId=10315&avatarType=issuetype",
"name": "Story",
"subtask": false,
"avatarId": 10315
},
"creator": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T15:58:12.797+1100",
"project": {
"self": "https://example.atlassian.net/rest/api/3/project/10000",
"id": "10000",
"key": "SP",
"name": "Sample Project",
"projectTypeKey": "software",
"simplified": false,
"avatarUrls": {
"48x48": "https://example.atlassian.net/secure/projectavatar?pid=10000&avatarId=10419",
"24x24": "https://example.atlassian.net/secure/projectavatar?size=small&s=small&pid=10000&avatarId=10419",
"16x16": "https://example.atlassian.net/secure/projectavatar?size=xsmall&s=xsmall&pid=10000&avatarId=10419",
"32x32": "https://example.atlassian.net/secure/projectavatar?size=medium&s=medium&pid=10000&avatarId=10419"
}
},
"reporter": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"assignee": null,
"updated": "2021-01-20T16:43:44.320+1100",
"status": {
"self": "https://example.atlassian.net/rest/api/3/status/10000",
"description": "",
"iconUrl": "https://example.atlassian.net/",
"name": "Backlog",
"id": "10000",
"statusCategory": {
"self": "https://example.atlassian.net/rest/api/3/statuscategory/2",
"id": 2,
"key": "new",
"colorName": "blue-gray",
"name": "To Do"
}
}
}
},
"mentionedAccountIds": ["123456:9af5200e-7667-459b-9c1f-38915c3644b9"],
"atlassianId": "4ad9aa0c52dc1b420a791d12",
"comment": {
"id": "10039",
"author": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"body": {
"version": 1,
"type": "doc",
"content": [
{
"type": "paragraph",
"content": [
{
"type": "text",
"text": "This is a comment and I am going to mention "
},
{
"type": "mention",
"attrs": {
"id": "123456:9af5200e-7667-459b-9c1f-38915c3644b9",
"text": "Firstname Lastname"
}
},
{
"type": "text",
"text": " in it"
}
]
}
]
},
"updateAuthor": {
"accountId": "4ad9aa0c52dc1b420a791d12"
},
"created": "2021-01-20T16:44:23.078+1100",
"updated": "2021-01-20T16:44:23.078+1100",
"jsdPublic": true
}
}
Rate this page: