Skip to main content
List your notifications, newest first.

Behavior

  • Likes, comment likes and follows are aggregated. One entry can stand for several events, so read actorCount and postCount rather than assuming one entry means one person.
    • Likes on the same post group together: actorCount is how many people liked it.
    • A single person liking several of your posts groups together: postCount is how many posts.
    • Comment likes group by comment. Comments never group, since each carries its own text.
  • actors is capped at 10 even when actorCount is 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.
  • mention notifications fire when someone @-mentions you in a post description or a comment. They are always delivered and cannot be turned off. body holds the text the mention appeared in.
  • body carries 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 checking type first.
  • postText is the related post’s text (its title, falling back to its description). Use it as the excerpt for post likes, the way body is used for comments.
  • postThumb is null for videos with no thumbnail and for posts that have been moderated.

Pagination

Pass the createdAt of the last entry you received as before to fetch the next page. Keep going while hasMore is true.

Examples

Responses

The entry above means “Player One and 2 others liked your post”.