@shortcut/client
    Preparing search index...

    Interface UpdateEpic

    interface UpdateEpic {
        after_id?: number;
        archived?: boolean;
        before_id?: number;
        completed_at_override?: null | string;
        deadline?: null | string;
        description?: string;
        epic_state_id?: number;
        external_id?: string;
        follower_ids?: string[];
        group_id?: null | string;
        group_ids?: string[];
        labels?: CreateLabelParams[];
        milestone_id?: null | number;
        name?: string;
        objective_ids?: number[];
        owner_ids?: string[];
        planned_start_date?: null | string;
        requested_by_id?: string;
        started_at_override?: null | string;
        state?: "in progress" | "to do" | "done";
    }
    Index

    Properties

    after_id?: number

    The ID of the Epic we want to move this Epic after.

    int64

    archived?: boolean

    A true/false boolean indicating whether the Epic is in archived state.

    before_id?: number

    The ID of the Epic we want to move this Epic before.

    int64

    completed_at_override?: null | string

    A manual override for the time/date the Epic was completed.

    date-time

    deadline?: null | string

    The Epic's deadline.

    date-time

    description?: string

    The Epic's description.

    100000

    epic_state_id?: number

    The ID of the Epic State.

    int64

    external_id?: string

    This field can be set to another unique ID. In the case that the Epic has been imported from another tool, the ID in the other tool can be indicated here.

    128

    follower_ids?: string[]

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

    group_id?: null | string

    Deprecated The ID of the group to associate with the epic. Use group_ids.

    uuid

    group_ids?: string[]

    An array of UUIDS for Groups to which this Epic is related.

    An array of Labels attached to the Epic.

    milestone_id?: null | number

    Deprecated The ID of the Milestone this Epic is related to. Use objective_ids.

    int64

    name?: string

    The Epic's name.

    1

    256

    objective_ids?: number[]

    An array of IDs for Objectives to which this Epic is related.

    owner_ids?: string[]

    An array of UUIDs for any members you want to add as Owners on this Epic.

    planned_start_date?: null | string

    The Epic's planned start date.

    date-time

    requested_by_id?: string

    The ID of the member that requested the epic.

    uuid

    started_at_override?: null | string

    A manual override for the time/date the Epic was started.

    date-time

    state?: "in progress" | "to do" | "done"

    Deprecated The Epic's state (to do, in progress, or done); will be ignored when epic_state_id is set.