@shortcut/client
    Preparing search index...

    Interface SearchStories

    interface SearchStories {
        archived?: boolean;
        completed_at_end?: string;
        completed_at_start?: string;
        created_at_end?: string;
        created_at_start?: string;
        deadline_end?: string;
        deadline_start?: string;
        epic_id?: null | number;
        epic_ids?: number[];
        estimate?: number;
        external_id?: string;
        group_id?: null | string;
        group_ids?: string[];
        includes_description?: boolean;
        iteration_id?: null | number;
        iteration_ids?: number[];
        label_ids?: number[];
        label_name?: string;
        owner_id?: null | string;
        owner_ids?: string[];
        project_id?: null | number;
        project_ids?: (null | number)[];
        requested_by_id?: string;
        story_type?: "feature" | "chore" | "bug";
        updated_at_end?: string;
        updated_at_start?: string;
        workflow_state_id?: number;
        workflow_state_types?: ("done" | "started" | "backlog" | "unstarted")[];
    }
    Index

    Properties

    archived?: boolean

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

    completed_at_end?: string

    Stories should have been completed on or before this date.

    date-time

    completed_at_start?: string

    Stories should have been completed on or after this date.

    date-time

    created_at_end?: string

    Stories should have been created on or before this date.

    date-time

    created_at_start?: string

    Stories should have been created on or after this date.

    date-time

    deadline_end?: string

    Stories should have a deadline on or before this date.

    date-time

    deadline_start?: string

    Stories should have a deadline on or after this date.

    date-time

    epic_id?: null | number

    The Epic IDs that may be associated with the Stories.

    int64

    epic_ids?: number[]

    The Epic IDs that may be associated with the Stories.

    true

    estimate?: number

    The number of estimate points associate with the Stories.

    int64

    external_id?: string

    An ID or URL that references an external resource. Useful during imports.

    1024

    group_id?: null | string

    The Group ID that is associated with the Stories

    uuid

    group_ids?: string[]

    The Group IDs that are associated with the Stories

    true

    includes_description?: boolean

    Whether to include the story description in the response.

    iteration_id?: null | number

    The Iteration ID that may be associated with the Stories.

    int64

    iteration_ids?: number[]

    The Iteration IDs that may be associated with the Stories.

    true

    label_ids?: number[]

    The Label IDs that may be associated with the Stories.

    true

    label_name?: string

    The name of any associated Labels.

    1

    owner_id?: null | string

    An array of UUIDs for any Users who may be Owners of the Stories.

    uuid

    owner_ids?: string[]

    An array of UUIDs for any Users who may be Owners of the Stories.

    true

    project_id?: null | number

    The IDs for the Projects the Stories may be assigned to.

    int64

    project_ids?: (null | number)[]

    The IDs for the Projects the Stories may be assigned to.

    true

    requested_by_id?: string

    The UUID of any Users who may have requested the Stories.

    uuid

    Optionalstory_type

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

    The type of Stories that you want returned.

    updated_at_end?: string

    Stories should have been updated on or before this date.

    date-time

    updated_at_start?: string

    Stories should have been updated on or after this date.

    date-time

    workflow_state_id?: number

    The unique IDs of the specific Workflow States that the Stories should be in.

    int64

    workflow_state_types?: ("done" | "started" | "backlog" | "unstarted")[]

    The type of Workflow State the Stories may be in.