Hi All,
I am trying to get the latest files uploaded in a folder. I am using the GetFolderItemsAsync function to get a list of files and folder sorted by date. I am able to get the contents but I cannot pass the sort parameter by date.
when I use the below, I get the error Newtonsoft.Json.JsonSerializationException: 'Error converting value "date" to type 'Box.V2.Models.BoxSortBy'. Path 'order[1].by', line 1, position 246.' and the BoxSortBy does not have a date equivalent.
var items = await appUserClient.FoldersManager.GetFolderItemsAsync(FolderId, 500,0, responeParam, false,"date", BoxSortDirection.DESC);
Note using the postman api collection I was able to sort the contents of a folder by date.
can you advise ?
Thank you.