provider Screen tabs GET /rest/api/3/screens/tabs
@utdk/jira /rest/api/3/screens/tabs
Get bulk screen tabs
Returns the list of tabs for a bulk of screens. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).
screenId query
The list of screen IDs. To include multiple screen IDs, provide an ampersand-separated list. For example, `screenId=10000&screenId=10001`.
array
tabId query
The list of tab IDs. To include multiple tab IDs, provide an ampersand-separated list. For example, `tabId=10000&tabId=10001`.
array
startAt query
The index of the first item to return in a page of results (page offset).
integer
maxResult query
The maximum number of items to return per page. The maximum number is 100,
integer

Try it

Authentication
Configure credentials for The Jira Cloud platform REST API
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.

Saved automatically to browser storage.

getbulkscreentabs
GET/rest/api/3/screens/tabs
Returns the list of tabs for a bulk of screens. **[Permissions](#permissions) required:** * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).

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

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

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

The maximum number of items to return per page. The maximum number is 100,

Enter a gateway URL above to enable sending.

Code snippet
Updates live as you fill in the form above.

TypeScript

import jira from '@utdk/jira';

await jira.getbulkscreentabs({
  "startAt": 0,
  "maxResult": 100
})