action confluence_get_available_screen_fields { label: "Get available screen fields" description: "Returns the fields that can be added to a tab on a screen.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: confluence method: GET path: "/rest/api/3/screens/{screenId}/availableFields" encoding: json input: { type: "object" properties: { screenId: { type: "integer" format: "int64" } } required: ["screenId"] 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 } } }