Apis related to boards
Returns all boards. This only includes boards that the user has permission to view.
Deprecation notice: The required OAuth 2.0 scopes will be updated on February 15, 2024.
read:board-scope:jira-software
, read:project:jira
Connect app scope required: READ
read:board-scope:jira-software
read:project:jira
integer
integer
object
string
string
string
string
boolean
boolean
string
Returns the requested boards, at the specified page of the results.
1
2
3
4
curl --request GET \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/board' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"isLast": false,
"maxResults": 2,
"startAt": 1,
"total": 5,
"values": [
{
"id": 84,
"name": "scrum board",
"self": "https://your-domain.atlassian.net/rest/agile/1.0/board/84",
"type": "scrum"
},
{
"id": 92,
"name": "kanban board",
"self": "https://your-domain.atlassian.net/rest/agile/1.0/board/92",
"type": "kanban"
}
]
}
Creates a new board. Board name, type and filter ID is required.
name
- Must be less than 255 characters.type
- Valid values: scrum, kanbanfilterId
- ID of a filter that the user has permissions to view. Note, if the user does not have the 'Create shared objects' permission and tries to create a shared board, a private board will be created instead (remember that board sharing depends on the filter sharing).location
- The container that the board will be located in. location
must include the type
property (Valid values: project, user). If choosing 'project', then a project must be specified by a projectKeyOrId
property in location
. If choosing 'user', the current user is chosen by default. The projectKeyOrId
property should not be provided.Note:
projectTypeKey
for software boards must be 'software' and the projectTemplateKey
must be either com.pyxis.greenhopper.jira:gh-kanban-template
or com.pyxis.greenhopper.jira:gh-scrum-template
.Connect app scope required: WRITE
write:board-scope:jira-software
integer
object
string
string
Returns the created board.
Details about a board.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
curl --request POST \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/board' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"filterId": 10040,
"location": {
"projectKeyOrId": "10000",
"type": "project"
},
"name": "scrum board",
"type": "scrum"
}'
1
2
3
4
5
6
{
"id": 84,
"name": "scrum board",
"self": "https://your-domain.atlassian.net/rest/agile/1.0/board/84",
"type": "scrum"
}
Returns any boards which use the provided filter id. This method can be executed by users without a valid software license in order to find which boards are using a particular filter.
Connect app scope required: READ
read:board-scope.admin:jira-software
integer
Requiredinteger
integer
Returns the requested boards, at the specified page of the results.
1
2
3
4
curl --request GET \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/board/filter/{filterId}' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
{
"id": 84,
"name": "scrum board",
"self": "https://your-domain.atlassian.net/rest/agile/1.0/board/84"
}
Returns the board for the given board ID. This board will only be returned if the user has permission to view it. Admins without the view permission will see the board as a private one, so will see only a subset of the board's data (board location for instance).
Connect app scope required: READ
read:board-scope:jira-software
read:issue-details:jira
integer
RequiredReturns the requested board.
Details about a board.
1
2
3
4
curl --request GET \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/board/{boardId}' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"id": 84,
"location": {
"displayName": "Example Project",
"name": "Example Project",
"projectId": 10040,
"projectKey": "Example Project Key",
"projectName": "Example Project",
"projectTypeKey": "KEY",
"userAccountId": "5b10a2844c20165700ede21g",
"userId": 10040
},
"name": "scrum board",
"self": "https://your-domain.atlassian.net/rest/agile/1.0/board/84",
"type": "scrum"
}
Deletes the board. Admin without the view permission can still remove the board.
Connect app scope required: DELETE
write:board-scope:jira-software
integer
RequiredReturned if the board has been successfully removed.
1
2
3
curl --request DELETE \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/board/{boardId}' \
--header 'Authorization: Bearer <access_token>'
Returns all issues from the board's backlog, for the given board ID. This only includes issues that the user has permission to view. The backlog contains incomplete issues that are not assigned to any future or active sprint. Note, if the user does not have permission to view the board, no issues will be returned at all. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank.
Connect app scope required: READ
read:board-scope:jira-software
read:issue-details:jira
integer
Requiredinteger
integer
string
boolean
array<object>
string
Returns the requested issues, at the specified page of the results.
The result of a JQL search.
1
2
3
4
curl --request GET \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/board/{boardId}/backlog' \
--header 'Authorization: Bearer <access_token>' \
--header 'Accept: application/json'
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