@shortcut/client
    Preparing search index...

    Interface CreateStoryChecklistItemParams

    Request parameters for creating a Checklist Item on a Story.

    interface CreateStoryChecklistItemParams {
        completed?: boolean;
        description: string;
        external_id?: string;
        set_position?: SetPosition;
    }
    Index

    Properties

    completed?: boolean

    True/false boolean indicating whether the Checklist Item is completed. Defaults to false.

    description: string

    The Checklist Item description.

    1

    2048

    external_id?: string

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

    128

    set_position?: SetPosition

    One of "first", "last", "before", or "after". This can be used to move the Checklist Item to the first or last position in the Story's checklist, or before or after a given Checklist Item.