action confluence_get_all_screen_tab_fields { label: "Get all screen tab fields" description: "Returns all fields for a screen tab.\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: confluence method: GET path: "/rest/api/3/screens/{screenId}/tabs/{tabId}/fields" encoding: json input: { type: "object" properties: { projectKey: { type: "string" } screenId: { type: "integer" format: "int64" } tabId: { type: "integer" format: "int64" } } required: ["screenId", "tabId"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "A screen tab field." properties: { id: { type: "string" description: "The ID of the screen tab field." } name: { type: "string" description: "The name of the screen tab field. Required on create and update. The maximum length is 255 characters." } } additionalProperties: false } } }