Moves Jira issues to the Jira Agile backlog.
Move-IssueToBacklog [-Issue] <Object> [-Credential <PSCredential>] [-WhatIf] [-Confirm] [<CommonParameters>]
Move-IssueToBacklog removes future and active sprint assignments from one or more Jira issues by calling the Jira Agile backlog endpoint.
The command submits issue keys in request batches of 50.
When imported normally, run this command as Move-JiraAgileIssueToBacklog.
$issue = Get-JiraIssue -Issue "PROJ-123" -Credential $cred
JiraAgilePS\Move-IssueToBacklog -Issue $issue -Credential $cred
Moves one Jira issue to the backlog.
$issues = Get-JiraIssue -Query 'project = PROJ AND sprint is not EMPTY' -Credential $cred
$issues | JiraAgilePS\Move-IssueToBacklog -Credential $cred
Pipes multiple Jira issues to the backlog command.
Issue object or issue key to move to the backlog.
Type: Object
Parameter Sets: (All)
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Credentials used for Jira authentication.
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: [System.Management.Automation.PSCredential]::Empty
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
Issue object(s) from JiraPS commands, for example Get-JiraIssue, or issue key strings.
This command does not emit output on success.
Use Move-JiraAgileIssueToBacklog in normal module usage. Move-IssueToBacklog is the source function name.