@shortcut/client
    Preparing search index...

    Interface HistoryActionStoryCreate

    An action representing a Story being created.

    interface HistoryActionStoryCreate {
        action: "create";
        app_url: string;
        blocked?: boolean;
        blocker?: boolean;
        completed?: boolean;
        custom_field_value_ids?: string[];
        deadline?: string;
        description?: string;
        entity_type: string;
        epic_id?: number;
        estimate?: number;
        follower_ids?: string[];
        group_id?: string;
        id: number;
        iteration_id?: null | number;
        label_ids?: number[];
        name: string;
        object_story_link_ids?: number[];
        owner_ids?: string[];
        project_id?: number;
        requested_by_id?: string;
        started?: boolean;
        story_type: "feature" | "chore" | "bug";
        subject_story_link_ids?: number[];
        task_ids?: number[];
        workflow_state_id?: number;
    }
    Index

    Properties

    action: "create"

    The action of the entity referenced.

    app_url: string

    The application URL of the Story.

    2048

    ^https?://.+$

    blocked?: boolean

    Whether or not the Story is blocked by another Story.

    blocker?: boolean

    Whether or not the Story is blocking another Story.

    completed?: boolean

    Whether or not the Story is completed.

    custom_field_value_ids?: string[]

    An array of Custom Field Enum Value ids on this Story.

    deadline?: string

    The timestamp representing the Story's deadline.

    description?: string

    The description of the Story.

    entity_type: string

    The type of entity referenced.

    epic_id?: number

    The Epic ID for this Story.

    int64

    estimate?: number

    The estimate (or point value) for the Story.

    int64

    follower_ids?: string[]

    An array of Member IDs for the followers of the Story.

    group_id?: string

    The Team IDs for the followers of the Story.

    uuid

    id: number

    The ID of the entity referenced.

    int64

    iteration_id?: null | number

    The Iteration ID the Story is in.

    int64

    label_ids?: number[]

    An array of Labels IDs attached to the Story.

    name: string

    The name of the Story.

    Optionalobject_story_link_ids

    object_story_link_ids?: number[]

    An array of Story IDs that are the object of a Story Link relationship.

    owner_ids?: string[]

    An array of Member IDs that are the owners of the Story.

    project_id?: number

    The Project ID of the Story is in.

    int64

    requested_by_id?: string

    The ID of the Member that requested the Story.

    uuid

    started?: boolean

    Whether or not the Story has been started.

    story_type

    story_type: "feature" | "chore" | "bug"

    The type of Story; either feature, bug, or chore.

    Optionalsubject_story_link_ids

    subject_story_link_ids?: number[]

    An array of Story IDs that are the subject of a Story Link relationship.

    task_ids?: number[]

    An array of Task IDs on this Story.

    workflow_state_id?: number

    An array of Workflow State IDs attached to the Story.

    int64