action atlassian_get_draft_default_workflow { label: "Get draft default workflow" description: "Returns the default workflow for a workflow scheme's draft. The default workflow is the workflow that is assigned any issue types that have not been mapped to any other workflow. The default workflow has *All Unassigned Issue Types* listed in its issue types for the workflow scheme in Jira.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/workflowscheme/{id}/draft/default" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int64" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Details about the default workflow." required: ["workflow"] properties: { updateDraftIfNeeded: { type: "boolean" description: "Whether a draft workflow scheme is created or updated when updating an active workflow scheme. The draft is updated with the new default workflow. Defaults to `false`." } workflow: { type: "string" description: "The name of the workflow to set as the default workflow." } } additionalProperties: false } }