Query parameters for listing boards.

interface BoardsParams {
    maxResults?: number;
    name?: string;
    projectKeyOrId?: string;
    startAt?: number;
    type?: "scrum" | "kanban";
}

Properties

maxResults?: number

Maximum number of results

name?: string

Filter boards by name (contains match)

projectKeyOrId?: string

Filter boards by project key or ID

startAt?: number

Index of the first result (0-based)

type?: "scrum" | "kanban"

Filter boards by type: 'scrum' or 'kanban'