This is about comments.
Returns a single comment. The tag parent-id holds the id of the note or email this is associated with.
Status: 200 OK
<comment>
<id type="integer">1</id>
<parent-id type="integer">3</parent-id>
<author-id type="integer">3</author-id>
<created-at type="datetime">2006-05-19T20:26:00Z</created-at>
<body>I agree, taxes are no fun</body>
</comment>
Returns a collection of comments that are visible to the authenticated user associated with the note specified in the URL.
Status: 200 OK
<comments>
<comment>
...
</comment>
<comment>
...
</comment>
</comments>
Returns a collection of comments that are visible to the authenticated user associated with the email specified in the URL.
Status: 200 OK
<comments>
<comment>
...
</comment>
<comment>
...
</comment>
</comments>
Creates a new comment with the currently authenticated user as the author. The XML for the new comment is returned on a successful request with the timestamps recorded and ids for the contact data associated. The parent-id holds the id of the note or email that this comment relates to.
<comment>
<body>I think that's exactly right!</body>
<parent-id>1</parent-id>
</comment>
Status: 201 Created
Location: http://example.highrisehq.com/comments/#{new-comment-id}.xml
<comment>
...
</comment>
Updates an existing comment with new details from the submitted XML.
<comment>
<body>Allow me to rephrase.</body>
</comment>
Status: 200 OK
Destroys the comment at the referenced URL.
Status: 200 OK