Comment On Thread

POST /threads/{threadId}/comments

Commenting on existing thread.

Path Params
threadId: thread-unique_id
Headers
Authorization: Bearer {accessToken}
Content-Type: application/json
Body
{
  "content": "string"
}

Response

201 Created
Response Body
{
  "status": "success",
  "data": {
    "addedComment": {
      "id": "comment-LU0Pb7ANm9ItE7lWJkvpU",
      "content": "sebuah comment",
      "owner": "user-RHtgDdcR7d0fOBQ1qPfRm"
    }
  }
}