interface GetScreens {
    id?: number[];
    maxResults?: number;
    orderBy?: string;
    queryString?: string;
    scope?: string[];
    startAt?: number;
}

Properties

id?: number[]

The list of screen IDs. To include multiple IDs, provide an ampersand-separated list. For example, id=10000&id=10001.

maxResults?: number

The maximum number of items to return per page.

orderBy?: string

Order the results by a field:

  • id Sorts by screen ID.
  • name Sorts by screen name.
queryString?: string

String used to perform a case-insensitive partial match with screen name.

scope?: string[]

The scope filter string. To filter by multiple scope, provide an ampersand-separated list. For example, scope=GLOBAL&scope=PROJECT.

startAt?: number

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