Comment Webhooks

Get notified when comments are created or deleted through the API.

Comment events fire when comments are created or deleted through the API. Every delivery uses the shared envelope described in Webhooks.

Events

EventWhen
comment.createdA comment was created via the API
comment.deletedA comment was deleted via the API

List/read comment calls do not emit webhooks.

Payloads

comment.created:

{
  "postId": "POST_ID",
  "destinationId": "DEST_ID",
  "accountId": "ACCOUNT_ID",
  "platform": "x",
  "externalPostId": "2077337724349026673",
  "parentCommentId": null,
  "comment": {
    "id": "COMMENT_ID",
    "text": "Thanks!",
    "username": "acme",
    "likeCount": 0,
    "timestamp": "2026-07-15T12:00:03.000Z",
    "parentId": null,
    "replies": []
  }
}

comment.deleted:

{
  "postId": "POST_ID",
  "destinationId": "DEST_ID",
  "accountId": "ACCOUNT_ID",
  "platform": "x",
  "externalPostId": "2077337724349026673",
  "commentId": "COMMENT_ID"
}

On this page