Back to the Developer home page
The API described in this document is obsolete. It is documented here only for the support of legacy applications that might be using it. New applications are encouraged to use the newer, REST-based API. Older applications, too, are encouraged to switch to the newer API.
Return the list of comments associated with the specified message.
<comments>
<comment>
...
</comment>
<comment>
...
</comment>
...
</comments>
Retrieve a specific comment by its id.
<comment>
...
</comment>
Create a new comment, associating it with a specific message.
<request>
<comment>
<post-id>#{post_id}</post-id>
<body>#{body}</body>
</comment>
</request>
<comment>
...
</comment>
Update a specific comment. This can be used to edit the content of an existing comment.
<request>
<comment_id>#{comment_id}</comment_id>
<comment>
<body>#{body}</body>
</comment>
</request>
<comment>
...
</comment>
Delete the comment with the given id.
<comment>
...
</comment>