@shortcut/client
    Preparing search index...

    Interface Workflow

    Workflow is the array of defined Workflow States. Workflow can be queried using the API but must be updated in the Shortcut UI.

    interface Workflow {
        auto_assign_owner: boolean;
        created_at: string;
        default_state_id: number;
        description: string;
        entity_type: string;
        id: number;
        name: string;
        project_ids: number[];
        states: WorkflowState[];
        team_id: number;
        updated_at: string;
    }
    Index

    Properties

    auto_assign_owner: boolean

    Indicates if an owner is automatically assigned when an unowned story is started.

    created_at: string

    The date the Workflow was created.

    date-time

    default_state_id: number

    The unique ID of the default state that new Stories are entered into.

    int64

    description: string

    A description of the workflow.

    entity_type: string

    A string description of this resource.

    id: number

    The unique ID of the Workflow.

    int64

    name: string

    The name of the workflow.

    project_ids: number[]

    An array of IDs of projects within the Workflow.

    states: WorkflowState[]

    A map of the states in this Workflow.

    team_id: number

    The ID of the team the workflow belongs to.

    int64

    updated_at: string

    The date the Workflow was updated.

    date-time