Details of a workflow.

interface JiraWorkflow {
    description?: string;
    id?: string;
    isEditable?: boolean;
    name?: string;
    scope?: WorkflowScope;
    startPointLayout?: WorkflowLayout;
    statuses?: WorkflowReferenceStatus[];
    taskId?: string;
    transitions?: WorkflowTransitions[];
    usages?: Version2.Version2Models.ProjectIssueTypes[];
    version?: DocumentVersion;
}

Properties

description?: string

The description of the workflow.

id?: string

The ID of the workflow.

isEditable?: boolean

Indicates if the workflow can be edited.

name?: string

The name of the workflow.

startPointLayout?: WorkflowLayout

The statuses referenced in this workflow.

taskId?: string

If there is a current asynchronous task operation for this workflow.

transitions?: WorkflowTransitions[]

The transitions of the workflow.

Use the optional workflows.usages expand to get additional information about the projects and issue types associated with the requested workflows.

version?: DocumentVersion