Get Task Comments
Gets the comments for a task by id.
Method
GET /task/{id}/comment
Parameters
Path Parameters
Name | Description |
---|---|
id | The id of the task to retrieve the comments for. |
Result
A JSON object containing a list of task comments.
Name | Value | Description |
---|---|---|
id | String | The id of the task comment. |
userId | String | The id of the user who created the comment. |
taskId | String | The id of the task to which the comment belongs. |
time | Date | The time when the comment was created. |
message | String | The content of the comment. |
Response Codes
Code | Media type | Description |
---|---|---|
200 | application/json | Request successful. |
404 | application/json | No task exists for the given task id. See the Introduction for the error response format. |
Example
Request
GET /task/aTaskId/comment
Response
[
{
"id": "commentId",
"userId": "userId",
"taskId": "aTaskId",
"time": "2013-01-02T21:37:03.764+0200",
"message": "message"
},
{
"id": "anotherCommentId",
"userId": "anotherUserId",
"taskId": "aTaskId",
"time": "2013-02-23T20:37:43.975+0200",
"message": "anotherMessage"
},
{
"id": "yetAnotherCommentId",
"userId": "yetAnotherUserId",
"taskId": "aTaskId",
"time": "2013-04-21T10:15:23.764+0200",
"message": "yetAnotherMessage"
}
]