List Comment Delete Input
Delete comment signature and config
Here is an object that includes the parameters necessary to delete a comment:
let listCommentDeleteDef = {
"lid": "list Id",
"cid": "comment id"
};
Argument | Type | Description |
---|---|---|
lid | string | Identifier of the list containing the comment |
cid | string | Identifier of the comment to be deleted |
In this context, lid
is the unique identifier of the list where the comment you want to delete is located. The cid
parameter is the unique identifier of the comment that you want to delete.
Updated over 1 year ago