action atlassian_get_default_share_scope { label: "Get default share scope" description: "Returns the default sharing settings for new filters and dashboards for a user.\n\n**[Permissions](#permissions) required:** Permission to access Jira." provider: atlassian method: GET path: "/rest/api/3/filter/defaultShareScope" encoding: json output: { type: "object" description: "Details of the scope of the default sharing for new filters and dashboards." required: ["scope"] properties: { scope: { type: "string" description: "The scope of the default sharing for new filters and dashboards:\n\n * `AUTHENTICATED` Shared with all logged-in users.\n * `GLOBAL` Shared with all logged-in users. This shows as `AUTHENTICATED` in the response.\n * `PRIVATE` Not shared with any users." enum: ["GLOBAL", "AUTHENTICATED", "PRIVATE"] } } additionalProperties: false } }