Rate this page:
Apis related to the backlog
POST /rest/agile/1.0/backlog/issue
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>
true
1 2 3 4 5 6 7 8 9 10 11
curl --request POST \
--url 'https://your-domain.atlassian.com/rest/agile/1.0/backlog/issue' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"issues": [
"PR-1",
"10001",
"PR-3"
]
}'
Empty response is returned if operation was successful.
POST /rest/agile/1.0/backlog/{boardId}/issue
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
int64
Array<string>
string
string
integer
int64
1 2 3 4 5 6 7 8 9 10 11 12 13
curl --request POST \
--url 'https://your-domain.atlassian.com/rest/agile/1.0/backlog/{boardId}/issue' \
--header 'Authorization: Bearer <access_token>' \
--header 'Content-Type: application/json' \
--data '{
"rankBeforeIssue": "PR-4",
"rankCustomFieldId": 10521,
"issues": [
"PR-1",
"10001",
"PR-3"
]
}'
Empty response is returned if operation was successful.
Rate this page: