@shortcut/client
    Preparing search index...

    Interface BulkUpdateIterationsParams1

    interface BulkUpdateIterationsParams1 {
        description?: string;
        end_date?: string;
        follower_ids?: string[];
        follower_ids_add?: string[];
        follower_ids_remove?: string[];
        id: number;
        name?: string;
        start_date?: string;
        team_ids?: string[];
        team_ids_add?: string[];
        team_ids_remove?: string[];
    }
    Index

    Properties

    description?: string

    The description of the Iteration.

    100000

    end_date?: string

    The date this Iteration ends (ISO 8601 date format, e.g. '2024-01-15').

    1

    follower_ids?: string[]

    An array of UUIDs for any Members you want to set as Followers, replacing existing Followers.

    follower_ids_add?: string[]

    An array of UUIDs for any Members you want to add as Followers.

    follower_ids_remove?: string[]

    An array of UUIDs for any Members you want to remove as Followers.

    id: number

    The id of the Iteration to update.

    int64

    name?: string

    The name of this Iteration.

    1

    256

    start_date?: string

    The date this Iteration begins (ISO 8601 date format, e.g. '2024-01-01').

    1

    team_ids?: string[]

    An array of UUIDs for any Teams you want to set on the Iteration, replacing existing Teams.

    team_ids_add?: string[]

    An array of UUIDs for any Teams you want to add to the Iteration.

    team_ids_remove?: string[]

    An array of UUIDs for any Teams you want to remove from the Iteration.