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

    Interface FindComponentsForProjects

    interface FindComponentsForProjects {
        maxResults?: number;
        orderBy?: string;
        projectIdsOrKeys?: string[];
        query?: string;
        startAt?: number;
    }
    Index

    Properties

    maxResults?: number

    The maximum number of items to return per page.

    orderBy?: string

    Order the results by a field:

    • description Sorts by the component description.
    • name Sorts by component name.
    projectIdsOrKeys?: string[]

    The project IDs and/or project keys (case sensitive).

    query?: string

    Filter the results using a literal string. Components with a matching name or description are returned (case insensitive).

    startAt?: number

    The index of the first item to return in a page of results (page offset).