@shortcut/client
    Preparing search index...

    Interface CreateStoryCommentParams

    interface CreateStoryCommentParams {
        author_id?: string;
        external_id?: string;
        parent_comment_id?: number;
        text: string;
    }
    Index

    Properties

    author_id?: string

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

    uuid

    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.

    128

    parent_comment_id?: number

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

    int64

    text: string

    The comment text.

    100000