Reply On Comment

POST /threads/{threadId}/comments/{commentId}/replies

Replying on existing thread comments.

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

Response

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