GET /api/project/:id/comments
Get a list of comments corresponding to a project. Only the reply_id can be null. If this is not null, it is the id of the comment to which it is a reply.
URL Params
Param: id
id of the project
Example of returned JSON
{
"success": true,
"comments": [
{
"id": 3,
"project_id": 12,
"reply_id": null,
"user_discord": "302427405023313920",
"user_name": "Xella",
"timestamp": 1695985904069,
"body": "Absolutely love it! Honestly the most polished game for CC I've ever seen :)"
}
]
}