Jira.js - Jira Cloud API library
    Preparing search index...

    Interface TransitionPayload

    The payload for creating a transition in a workflow. Can be DIRECTED, GLOBAL, SELF-LOOPED, GLOBAL LOOPED

    interface TransitionPayload {
        actions?: Version3Models.RulePayload[];
        conditions?: Version3Models.ConditionGroupPayload;
        customIssueEventId?: string;
        description?: string;
        from?: Version3Models.FromLayoutPayload[];
        id?: number;
        name?: string;
        properties?: {};
        to?: Version3Models.ToLayoutPayload;
        transitionScreen?: Version3Models.RulePayload;
        triggers?: Version3Models.RulePayload[];
        type?: string;
        validators?: Version3Models.RulePayload[];
    }
    Index

    Properties

    The actions that are performed when the transition is made

    customIssueEventId?: string

    Mechanism in Jira for triggering certain actions, like notifications, automations, etc. Unless a custom notification scheme is configure, it's better not to provide any value here

    description?: string

    The description of the transition

    The statuses that the transition can be made from

    id?: number

    The id of the transition

    name?: string

    The name of the transition

    properties?: {}

    The properties of the transition

    transitionScreen?: Version3Models.RulePayload

    The triggers that are performed when the transition is made

    type?: string

    The type of the transition

    The validators that are performed when the transition is made