Add a message comment
|
POST api/2.0/project/message/{messageid}/comment
|
Adds a comment to the selected message with the text specified in the request. The parent comment ID can be also selected.
|
Add a project comment
|
POST api/2.0/project/comment
|
Adds a project comment with the parameters specified in the request. The parent comment ID can also be selected.
|
Add a task comment
|
POST api/2.0/project/task/{taskid}/comment
|
Adds a comment to the selected task with the comment text and parent comment ID specified in the request.
|
Get a comment
|
GET api/2.0/project/comment/{commentid}
|
Returns the information about a comment with the ID specified in the request.
|
Get a comment preview
|
POST api/2.0/project/comment/preview
|
Get a preview of a project comment with the ID specified in the request.
|
Get message comments
|
GET api/2.0/project/message/{messageid}/comment
|
Returns a list of comments for the discussion message within a project with the ID specified in the request.
|
Get task comments
|
GET api/2.0/project/task/{taskid}/comment
|
Returns a list of the comments for the task with the ID specified in the request.
|
Remove a comment
|
DELETE api/2.0/project/comment/{commentid}
|
Removes a comment with the ID specified in the request.
|
Update a comment
|
PUT api/2.0/project/comment/{commentid}
|
Updates the seleted comment using the comment text specified in the request.
|