List Comment Input
Comment Input definition.
Object containing params required for creating new list comment
let listCommentDef = {
"lid": "list id",
"txt": "Comment text",
"cprops": {} // optional param
};
Argument | Type | Description |
---|---|---|
lid | string | The identifier of the list to which you're adding a comment |
txt | string | The actual content of the comment |
cprops (optional) | object | Optional. A set of custom fields, presented as a map |
In this example, lid
represents the unique identifier for the list you're adding a comment to. The txt
parameter is the actual text of your comment. Finally, cprops
is an optional parameter that can include any additional custom fields in the form of a map.
Updated over 1 year ago
Did this page help you?