• Backlog
  • Board
  • Epic
  • Issue
  • Sprint
  • Development Information
  • Feature Flags
  • Deployments
  • Builds
  • Security Information
Cloud
Jira Software Cloud / Reference / REST API

Backlog

Postman Collection
OpenAPI
POST

Move issues to 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.

Scopes

Connect app scope requiredWRITE

write:board-scope:jira-software

Request

Request bodyapplication/json

issues

array<string>

Responses

Empty response is returned if operation was successful.

POST/rest/agile/1.0/backlog/issue
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" ] }'
POST

Move issues to backlog for board

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.

Scopes

Connect app scope requiredWRITE

write:board-scope:jira-software

Request

Path parameters

boardId

integer

Required

Request bodyapplication/json

issues

array<string>

rankBeforeIssue

string

rankAfterIssue

string

rankCustomFieldId

integer

Responses

Empty response is returned if operation was successful.

POST/rest/agile/1.0/backlog/{boardId}/issue
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" ] }'

Rate this page: