{ "text": "string", "argumentType": "oppose", "parentCommentId": "string" }
curl --location --request POST 'https://api.sqabl.com/v1/post//comment/' \ --header 'Authorization: Bearer some-user-token' \ --header 'Content-Type: application/json' \ --data-raw '{ "text": "string", "argumentType": "oppose", "parentCommentId": "string" }'
{ "success": true, "statusCode": 200, "data": { "comment": { "id": "some-new-comment-id", "argumentType": "support", "text": "This is my argument.", "dateCommented": "2024-09-30 17:4:13" }, "post": { "id": "the-post-id", "totalComments": 43 } } }