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
};
ArgumentTypeDescription
lidstringThe identifier of the list to which you're adding a comment
txtstringThe actual content of the comment
cprops (optional)objectOptional. 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.