GET /comment
Get comments of an item
Example URI
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
{
"status": "success",
"data": [
{
"is_liked": null,
"comment_id": "14",
"parent_id": "0",
"type_id": "app",
"item_id": "9",
"user_id": "1",
"owner_user_id": "10",
"child_total": "1",
"total_like": "0",
"text": "Great video"
}
],
"messages": []
}
|
POST /comment
Add comment on an item
Example URI
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
{
"status": "success",
"data": {
"is_liked": null,
"comment_id": "15",
"parent_id": "14",
"type_id": "app",
"item_id": "9",
"user_id": "1",
"owner_user_id": "10",
"child_total": "0",
"total_like": "0",
"text": "Yes. A great song for Christmas day.",
"unix_time_stamp": "1481252047"
},
"messages": [
"Comment successfully added."
]
}
|
GET /comment/:id
Get information of a specific comment
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
{
"status": "success",
"data": {
"is_liked": "24",
"comment_id": "14",
"parent_id": "0",
"type_id": "app",
"item_id": "9",
"user_id": "1",
"owner_user_id": "10",
"child_total": "1",
"total_like": "1",
"text": "great video",
"unix_time_stamp": "1481251788"
},
"messages": []
}
|
PUT /comment/:id
Update comment content
Example URI
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
{
"status": "success",
"data": {
"is_liked": "24",
"comment_id": "14",
"parent_id": "0",
"type_id": "app",
"item_id": "9",
"user_id": "1",
"owner_user_id": "10",
"child_total": "1",
"total_like": "1",
"text": "Great Music Video!",
"unix_time_stamp": "1481251788"
},
"messages": [
"Comment successfully updated."
]
}
|
DELETE /comment/:id
Delete a specific comment.
...