{ "opencollection": "1.0.0", "info": { "name": "Atlassian Admin Account Screen Tab Fields API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Screen Tab Fields", "type": "folder" }, "items": [ { "info": { "name": "Atlassian Get All Screen Tab Fields", "type": "http" }, "http": { "method": "GET", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId/fields", "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": "projectKey", "value": "", "type": "query", "description": "The key of the project." } ] }, "docs": "Returns all fields for a screen tab.

**[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 Add Screen Tab Field", "type": "http" }, "http": { "method": "POST", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId/fields", "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": "Adds a field to a screen tab.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Remove Screen Tab Field", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId/fields/:id", "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": "id", "value": "", "type": "path", "description": "The ID of the field." } ] }, "docs": "Removes a field from a screen tab.

**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." }, { "info": { "name": "Atlassian Move Screen Tab Field", "type": "http" }, "http": { "method": "POST", "url": "https://api.atlassian.com/rest/api/3/screens/:screenId/tabs/:tabId/fields/:id/move", "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": "id", "value": "", "type": "path", "description": "The ID of the field." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Moves a screen tab field.

If `after` and `position` are provided in the request, `position` is ignored.

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