Details about the server Jira is running on.

interface UpdateWorkflowTransitionProperty {
    id?: string;
    key: string;
    transitionId: number;
    value: string;
    workflowMode?: string;
    workflowName: string;
}

Hierarchy (view full)

Properties

id?: string

The ID of the transition property.

key: string

The key of the property being updated, also known as the name of the property. Set this to the same value as the key defined in the request body.

transitionId: number

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

value: string

The value of the transition property.

workflowMode?: string

The workflow status. Set to live for inactive workflows or draft for draft workflows. Active workflows cannot be edited.

workflowName: string

The name of the workflow that the transition belongs to.