action atlassian_get_all_workflows { label: "Get all workflows" description: "Returns all workflows in Jira or a workflow. Deprecated, use [Get workflows paginated](#api-rest-api-3-workflow-search-get).\n\nIf the `workflowName` parameter is specified, the workflow is returned as an object (not in an array). Otherwise, an array of workflow objects is returned.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: atlassian method: GET path: "/rest/api/3/workflow" encoding: json input: { type: "object" properties: { workflowName: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "Details about a workflow." properties: { default: { type: "boolean" } description: { type: "string" description: "The description of the workflow." } lastModifiedDate: { type: "string" description: "The datetime the workflow was last modified." } lastModifiedUser: { type: "string" description: "This property is no longer available and will be removed from the documentation soon. See the [deprecation notice](https://developer.atlassian.com/cloud/jira/platform/deprecation-notice-user-privacy-api-migration-guide/) for details." } lastModifiedUserAccountId: { type: "string" description: "The account ID of the user that last modified the workflow." } name: { type: "string" description: "The name of the workflow." } scope: { description: "The scope where this workflow applies" type: "object" } steps: { type: "integer" format: "int32" description: "The number of steps included in the workflow." } } additionalProperties: false } } }