Query parameters for listing issues on a board.

interface BoardIssuesParams {
    expand?: string;
    fields?: string;
    jql?: string;
    maxResults?: number;
    startAt?: number;
    validateQuery?: boolean;
}

Properties

expand?: string

Fields to expand

fields?: string

Comma-separated list of fields to include

jql?: string

JQL query to filter issues

maxResults?: number

Maximum number of results

startAt?: number

Index of the first result (0-based)

validateQuery?: boolean

Whether to validate the JQL query