interface GetBoardByFilterId {
    filterId: number;
    maxResults?: number;
    startAt?: number;
}

Properties

filterId: number

Filters results to boards that are relevant to a filter. Not supported for next-gen boards.

maxResults?: number

The maximum number of boards to return per page. Default: 50. See the 'Pagination' section at the top of this page for more details.

startAt?: number

The starting index of the returned boards. Base index: 0. See the 'Pagination' section at the top of this page for more details.