(create-comment ticket node-id body)(create-comment ticket node-id body query-params & [opts])Creates a comment on node node-id. You specify the comment in a body like this:
(model/map->CreateCommentBody {:content "This is a comment"))})
More info here.
Creates a comment on node `node-id`. You specify the comment in a `body` like this:
```clojure
(model/map->CreateCommentBody {:content "This is a comment"))})
```
More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/createComment).(delete-comment ticket node-id comment-id & [opts])Deletes the comment comment-id from node node-id.
More info here.
Deletes the comment `comment-id` from node `node-id`.\ More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/deleteComment).
(list-comments ticket node-id)(list-comments ticket node-id query-params & [opts])Gets a list of comments for the node node-id, sorted chronologically with the newest comment first.
More info here.
Gets a list of comments for the node `node-id`, sorted chronologically with the newest comment first.\ More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/listComments).
(update-comment ticket node-id comment-id body)(update-comment ticket node-id comment-id body query-params & [opts])Updates an existing comment comment-id on node node-id.
More info here.
Updates an existing comment `comment-id` on node `node-id`.\ More info [here](https://api-explorer.alfresco.com/api-explorer/?urls.primaryName=Core%20API#/comments/updateComment).
cljdoc builds & hosts documentation for Clojure/Script libraries
| Ctrl+k | Jump to recent docs |
| ← | Move to previous article |
| → | Move to next article |
| Ctrl+/ | Jump to the search field |