group_feed field for
the Page topic webhooks
returns information about comments published by a person on your business' Facebook Group. With this information you can privately reply to the person who published the comment.
[ { "object": "page", "entry": [ { "time": 1680575902263, "id": "PAGE-ID", "messaging": [ { "recipient": { "id": "PAGE-ID" }, "from": { "id": "USER-ID", "name": "Cinderella Hoover" }, "group_id": "GROUP-ID", "comment_id": "COMMENT-ID", "parent_id": "PARENT-ID", "post_id": "POST-ID", "created_time": 1680575789, "item": "comment", "verb": "add", "message": "Does this shirt come in blue?", "field": "group_feed" } ], "hop_context": null } ] } ]
messaging properties are included in the webhooks notification.| Property Name | Description |
|---|---|
comment_id | The ID for the comment made by a person on a business’ Facebook group post |
created_time | The time the update was made |
field | The value group_feed for the Page messaging webhook |
group_id | The ID for the Facebook group where the post or comment was published |
item | The value for the item published in the Facebook group is comment |
message | The text of the comment made by the person |
post_id | The ID for the post that the person commented on |
parent_id | The ID for the parent post or comment to which the reply was made |
recipient | The field representing ID for the Facebook Page for the business that owns or administers the Facebook Group |
from | The field representing ID and name of the person that commented on business’ Facebook group post |
verb | The action take that triggered the webhook. The value add is the action for publishing comment in the group |