action atlassian_get_all_screen_tabs { label: "Get all screen tabs" description: "Returns the list of tabs for a screen.\n\n**[Permissions](#permissions) required:**\n\n * *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg).\n * *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." provider: atlassian method: GET path: "/rest/api/3/screens/{screenId}/tabs" encoding: json input: { type: "object" properties: { projectKey: { type: "string" } screenId: { type: "integer" format: "int64" } } required: ["screenId"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "A screen tab." required: ["name"] properties: { id: { type: "integer" format: "int64" description: "The ID of the screen tab." } name: { type: "string" description: "The name of the screen tab. The maximum length is 255 characters." } } additionalProperties: false } } }