moveIssuesToBacklogForBoard method

Future<void> moveIssuesToBacklogForBoard({
  1. required int boardId,
  2. required Map<String, dynamic> body,
})

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.

Implementation

Future<void> moveIssuesToBacklogForBoard(
    {required int boardId, required Map<String, dynamic> body}) async {
  await _client.send(
    'post',
    'rest/agile/1.0/backlog/{boardId}/issue',
    pathParameters: {
      'boardId': '$boardId',
    },
    body: body,
  );
}