Jira.js - Jira Cloud API library
    Preparing search index...

    Interface GetEpics

    interface GetEpics {
        boardId: number;
        done?: string;
        maxResults?: number;
        startAt?: number;
    }
    Index

    Properties

    boardId: number

    The ID of the board that contains the requested epics.

    done?: string

    Filters results to epics that are either done or not done. Valid values: true, false.

    maxResults?: number

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

    startAt?: number

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