/comments
APIThere aren’t any endpoints under /comments
at the time of writing, but you may be looking for these endpoints instead:
GET /users/<username>/projects/<id>/comments
: get top-level comments on a projectGET /users/<username>/projects/<id>/comments/<id>
: get a single comment on a projectGET /users/<username>/projects/<id>/comments/<id>/replies
: get replies to a comment on a projectPOST /proxy/comments/project/<id>
: add a comment on a projectDELETE /proxy/comments/project/<id>/comment/<id>
: remove a comment on a projectGET /studios/<id>/comments
: get top-level comments on a studioGET /studios/<id>/comments/<id>
: get a single comment on a studioGET /studios/<id>/comments/<id>/replies
: get replies to a comment on a studioPOST /proxy/comments/studio/<id>
: add a comment on a studioDELETE /proxy/comments/studio/<id>/comment/<id>
: remove a comment on a studio