interface GetWorkflowTransitionProperties {
    includeReservedKeys?: boolean;
    key?: string;
    transitionId: number;
    workflowMode?: string;
    workflowName: string;
}

Properties

includeReservedKeys?: boolean

Some properties with keys that have the jira. prefix are reserved, which means they are not editable. To include these properties in the results, set this parameter to true.

key?: string

The key of the property being returned, also known as the name of the property. If this parameter is not specified, all properties on the transition are returned.

transitionId: number

The ID of the transition. To get the ID, view the workflow in text mode in the Jira administration console. The ID is shown next to the transition.

workflowMode?: string

The workflow status. Set to live for active and inactive workflows, or draft for draft workflows.

workflowName: string

The name of the workflow that the transition belongs to.