@shortcut/client
    Preparing search index...

    Interface CreateTaskParams

    Request parameters for creating a Task on a Story.

    interface CreateTaskParams {
        complete?: boolean;
        created_at?: string;
        description: string;
        external_id?: string;
        owner_ids?: string[];
        updated_at?: string;
    }
    Index

    Properties

    complete?: boolean

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

    created_at?: string

    Defaults to the time/date the Task is created but can be set to reflect another creation time/date.

    date-time

    description: string

    The Task description.

    1

    2048

    external_id?: string

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

    128

    owner_ids?: string[]

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

    updated_at?: string

    Defaults to the time/date the Task is created in Shortcut but can be set to reflect another time/date.

    date-time