Apis related to the backlog
Move issues to the backlog. This operation is equivalent to remove future and active sprints from a given set of issues. At most 50 issues may be moved at once.
Connect app scope required: WRITE
write:board-scope:jira-software
array<string>
Empty response is returned if operation was successful.
1
2
3
4
5
6
7
8
9
10
11
curl --request POST \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/backlog/issue' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"issues": [
"10001",
"PR-1",
"PR-3"
]
}'
Move issues to the backlog of a particular board (if they are already on that board).
This operation is equivalent to remove future and active sprints from a given set of issues if the board has sprints If the board does not have sprints this will put the issues back into the backlog from the board. At most 50 issues may be moved at once.
Connect app scope required: WRITE
write:board-scope:jira-software
integer
Requiredarray<string>
string
string
integer
Empty response is returned if operation was successful.
1
2
3
4
5
6
7
8
9
10
11
12
13
curl --request POST \
--url 'https://your-domain.atlassian.net/rest/agile/1.0/backlog/{boardId}/issue' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"issues": [
"PR-1",
"10001",
"PR-3"
],
"rankBeforeIssue": "PR-4",
"rankCustomFieldId": 10521
}'
Rate this page: