Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
php
php
{
  "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

...

Parameter

Type

Require ?

Description

val[type]

string

yes

Type id of the item

val[item_id]

number

yes

Id of the item

val[text]

string

yes

Comment text

val[parent_id]

number

no

Require for adding reply on comment

val[app_object]

string

no

Require if comment on an app item

val[parent_module]

string

no

Parent type of the app item

...

Code Block
php
php
{
  "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
php
php
{
  "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.

...

Code Block
php
php
{
  "status": "success",
  "data": [],
  "messages": [[
    "Comment successfully deleted."
  ]]
}