@shortcut/client
    Preparing search index...

    Interface CreateStoryCommentParams

    Request parameters for creating a Comment on a Shortcut Story.

    interface CreateStoryCommentParams {
        author_id?: string;
        created_at?: string;
        external_id?: string;
        parent_id?: null | number;
        text: string;
        updated_at?: string;
    }
    Index

    Properties

    author_id?: string

    The Member ID of the Comment's author. Defaults to the user identified by the API token.

    uuid

    created_at?: string

    Defaults to the time/date the comment is created, but can be set to reflect another date.

    date-time

    external_id?: string

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

    1024

    parent_id?: null | number

    The ID of the Comment that this comment is threaded under.

    int64

    text: string

    The comment text.

    100000

    updated_at?: string

    Defaults to the time/date the comment is last updated, but can be set to reflect another date.

    date-time