@shortcut/client
    Preparing search index...

    Interface CreateEpicParams

    interface CreateEpicParams {
        completed_at_override?: string;
        deadline?: string | null;
        description?: string;
        epic_state_id?: number;
        external_id?: string;
        follower_ids?: string[];
        name: string;
        objective_ids?: number[];
        owner_ids?: string[];
        planned_start_date?: string | null;
        requested_by_id?: string;
        started_at_override?: string;
        team_ids?: string[];
    }
    Index

    Properties

    completed_at_override?: string

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

    date-time

    deadline?: string | null

    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

    An external ID for the Epic.

    128

    follower_ids?: string[]

    An array of UUIDs for Members to add as Followers.

    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 Members to add as Owners.

    planned_start_date?: string | null

    The Epic's planned start date.

    date-time

    requested_by_id?: string

    The UUID of the Member that requested the Epic.

    uuid

    started_at_override?: string

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

    date-time

    team_ids?: string[]

    An array of UUIDs for Teams to associate with the Epic.