{ "opencollection": "1.0.0", "info": { "name": "Atlassian Admin Account Screen Tabs API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Screen Tabs", "type": "folder" }, "items": [ { "info": { "name": "Atlassian Get Bulk Screen Tabs", "type": "http" }, "http": { "method": "GET", "url": "https://api.atlassian.com/rest/api/3/screens/tabs", "params": [ { "name": "screenId", "value": "", "type": "query", "description": "The list of screen IDs. To include multiple screen IDs, provide an ampersand-separated list. For example, `screenId=10000&screenId=10001`." }, { "name": "tabId", "value": "", "type": "query", "description": "The list of tab IDs. To include multiple tab IDs, provide an ampersand-separated list. For example, `tabId=10000&tabId=10001`." }, { "name": "startAt", "value": "", "type": "query", "description": "The index of the first item to return in a page of results (page offset)." }, { "name": "maxResult", "value": "", "type": "query", "description": "The maximum number of items to return per page. The maximum number is 100," } ] }, "docs": "Returns the list of tabs for a bulk of screens.

**[Permissions](#permissions) required:**

* *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Get All Screen Tabs", "type": "http" }, "http": { "method": "GET", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs", "params": [ { "name": "screenId", "value": "", "type": "path", "description": "The ID of the screen." }, { "name": "projectKey", "value": "", "type": "query", "description": "The key of the project." } ] }, "docs": "Returns the list of tabs for a screen.

**[Permissions](#permissions) required:**

* *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).
* *Administer projects* [project permission](https://confluence.atlassian.com/x/yodKLg) when the project key is specified, providing that the screen is associated with the project through a Screen Scheme and Issue Type Screen Scheme." }, { "info": { "name": "Atlassian Create Screen Tab", "type": "http" }, "http": { "method": "POST", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs", "params": [ { "name": "screenId", "value": "", "type": "path", "description": "The ID of the screen." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a tab for a screen.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Update Screen Tab", "type": "http" }, "http": { "method": "PUT", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId", "params": [ { "name": "screenId", "value": "", "type": "path", "description": "The ID of the screen." }, { "name": "tabId", "value": "", "type": "path", "description": "The ID of the screen tab." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the name of a screen tab.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Delete Screen Tab", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId", "params": [ { "name": "screenId", "value": "", "type": "path", "description": "The ID of the screen." }, { "name": "tabId", "value": "", "type": "path", "description": "The ID of the screen tab." } ] }, "docs": "Deletes a screen tab.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Move Screen Tab", "type": "http" }, "http": { "method": "POST", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId/move/:pos", "params": [ { "name": "screenId", "value": "", "type": "path", "description": "The ID of the screen." }, { "name": "tabId", "value": "", "type": "path", "description": "The ID of the screen tab." }, { "name": "pos", "value": "", "type": "path", "description": "The position of tab. The base index is 0." } ] }, "docs": "Moves a screen tab.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." } ] } ], "bundled": true }