Behavior
- Likes, comment likes and follows are aggregated. One entry can stand for several events, so read
actorCountandpostCountrather than assuming one entry means one person.- Likes on the same post group together:
actorCountis how many people liked it. - A single person liking several of your posts groups together:
postCountis how many posts. - Comment likes group by comment. Comments never group, since each carries its own text.
- Likes on the same post group together:
actorsis capped at 10 even whenactorCountis higher. It is enough to render an avatar row.- Grouping is applied per page, so an aggregated entry only covers events within the same page of results.
mentionnotifications fire when someone @-mentions you in a post description or a comment. They are always delivered and cannot be turned off.bodyholds the text the mention appeared in.bodycarries the comment excerpt for comment, comment-like, and mention notifications, and the payout amount for payout notifications. Do not render it as an excerpt without checkingtypefirst.postTextis the related post’s text (its title, falling back to its description). Use it as the excerpt for post likes, the waybodyis used for comments.postThumbis null for videos with no thumbnail and for posts that have been moderated.
Pagination
Pass thecreatedAt of the last entry you received as before to fetch the next page. Keep going while hasMore is true.

