Is there a known extension or method that allows a list of the latest replies via the API?
Effectively exactly like the default /discussions api endpoint but instead it returns the replies/posts within those discussions, so we can see a feed of whats being said?
Caveat... we'd like to exclude a certain tag from this? e.g. &filter[tag]=!dont-show-tag
So effectively we have....
https://website.com/api/posts?sort=-createdAt&filter[tag]=-100
This would return all posts that have NOT been tagged by tag 100, I noticed we can do filter[tag]=100 but cannot comma seperate these e.g. 100,200,300 and I couldn't do -100
Please advise