Gets Jira Agile boards.
Get-Board [[-PageSize] <UInt32>] [-Credential <PSCredential>] [<CommonParameters>]
Get-Board [-BoardId] <UInt64[]> [[-PageSize] <UInt32>] [-Credential <PSCredential>] [<CommonParameters>]
Get-Board queries Jira Agile boards through the Jira Agile REST API.
Use -BoardId when you already know specific board identifiers.
Without -BoardId, the command returns boards with paging support.
When imported normally, run this command as Get-JiraAgileBoard.
JiraAgilePS\Get-Board -Credential $cred
Returns boards visible to the authenticated user.
JiraAgilePS\Get-Board -BoardId 12, 45 -Credential $cred
Returns only the boards with IDs 12 and 45.
JiraAgilePS\Get-Board -First 10 -IncludeTotalCount -Credential $cred
Returns the first 10 boards and emits the total available board count.
One or more board IDs to retrieve.
Type: UInt64[]
Parameter Sets: _Search
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Maximum results requested per page when listing boards.
Type: UInt32
Parameter Sets: _All
Aliases:
Required: False
Position: Named
Default value: 25
Accept pipeline input: False
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
Causes an extra output of the total count at the beginning of paged output.
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
Controls how many items are skipped before output starts.
Type: UInt64
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
Controls how many items are returned.
Type: UInt64
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: 18446744073709551615
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.
Board IDs when using the _Search parameter set.
Use Get-JiraAgileBoard in normal module usage. Get-Board is the source function name.