Hello,
I am trying to retreive the mingle task under the current user via /IONDataService.Svc/User/{userGuid}/MingleFeeds ION API.
My issue is that the API is not retreiving more than 50 task however I have more than 50 in my inbox. in the same time if I displayed the task in the standard task list widget it's displaying the full number of tasks.
I am using the below API with this request body:
/IONDataService.Svc/User/{userGuid}/MingleFeeds
{
"RefreshIdentifier": "",
"FeedsToFetch": 0,
"SocialPostsOnly": false,
"ExcludeSocialObjectPosts": true,
"ActivityFeedRequestParameters": {
"NewFeeds": true,
"BeforeDate": 0,
"AfterDate": 0,
"SortOrder": 1,
"FilterByEscalation": 0,
"FilterByCategory": ""
},
"ActivityFeeds": false,
"Tasks": true,
"IncludeIONNotifications": false,
"TaskRequestParameters": {
"NewFeeds": true,
"BeforeDate": 0,
"AfterDate": 0,
"SortOrder": 1,
"FilterByEscalation": 0,
"FilterByCategory": ""
},
"Alerts": false,
"AlertRequestParameters": {
"NewFeeds": true,
"BeforeDate": 0,
"AfterDate": 0,
"SortOrder": 1,
"FilterByEscalation": 0,
"FilterByCategory": ""
}
}
output is only 50 tasks


Thanks.