Comment API improvements

I’m trying to use webhooks to integrate comments with my app, but events are missing client_meta, so I can’t know where the comment is located. Sadly, comment API doesn’t have a GET method by comment_id, so I can’t retrieve it effectively either. Another problem is that webhook sends same event when comment is deleted, but it is not possible (from what I can see) to distinguish it from other events.

I would like to suggest:

  • add client_meta to webhook payload
  • create a get method for a single comment
  • add deleted_at timestamp which will be non-empty if comment is deleted, similar to created_at and resolved_at
2 Likes

I got these issues as well.
Anotehr issue I got is that webhook sends the same event twice within seconds.

Any improvement about Comment webhook?