API Reference

Comments API

Reference cho Comments endpoints.

Comments

Nested comments trên posts.

Add Comment

ts
const comment = await devkit.comments.create({
  postId: 'post_1',
  body: 'Great post!',
  authorId: 'usr_2',
});

Reply

ts
await devkit.comments.reply(comment.id, {
  body: 'Thanks!',
  authorId: 'usr_1',
});