Langfuse JS/TS SDKs
    Preparing search index...

    Interface GetCommentsRequest

    {}
    
    interface GetCommentsRequest {
        authorUserId?: string;
        limit?: number;
        objectId?: string;
        objectType?: string;
        page?: number;
    }
    Index

    Properties

    authorUserId?: string

    Filter comments by author user id.

    limit?: number

    Limit of items per page. If you encounter api issues due to too large page sizes, try to reduce the limit

    objectId?: string

    Filter comments by object id. If objectType is not provided, an error will be thrown.

    objectType?: string

    Filter comments by object type (trace, observation, session, prompt).

    page?: number

    Page number, starts at 1.