ContributionsMost RecentMost LikesSolutionsRe: Issues with batched queries Yes, the "sorts" worked perfectly 🙂 thanks SuzieH . Now I just need to know how to do get the Notification counts for the users. I assume since there are no constraints available the endpoint only returns the notification feed for the authorized user making the call. Issues with batched queries Hi, I'm trying to create a batch request fetching the latest posts in a users favorite areas, the number of unread messages and the number of notifications. I have had some partial success so far but I've run into two issues: I can't find any documentation on how to do ordering in a json query. I can't constrain the query for notification_feed to a specific user in api/v2 as I could in api/v1. Is there any other good solutions for getting the notification count for a user [ { "query":{ "messages": { "fields": [ "id", "subject", "teaser", "body", "view_href", "post_time", "conversation.featured", "conversation.style", "conversation.last_post_time", "conversation.last_post_time_friendly", "author.id", "author.href", "author.view_href", "author.login", "author.avatar.message", "board.id", "board.title", "board.parent_category.title", "metrics", "kudos.sum(weight)" ], "constraints": [ {"category.id": {"in": ["<<category1>>", <<category2>>"]}}, {"depth": {"=": 0}} ], "limit": 5 } } }, { "query":{ "inbox_notes": { "fields": ["id", "is_read"], "constraints": [ {"user.id": {"=" : "<<id>>"}}, {"unread_only": {"=": true}}] } } }, { "query":{ "notification_feeds": { "fields": ["id"] } } } ] Solved