Requirement Explanation
I'm developing a company dashboard, wish MS To-Do is part of as a widget, and there is no value if I can't sync task sorting order between tools such as MS To-Do, Outlook, or To-Do mobile applications.
Outlook Tasks REST API
As seen on Outlook Task REST API documentation, I could do that, but that will be deprecated later this year (source). Both Outlook Web and MS To-Do online seem to be using that API for interacting with MS To-Do (Outlook Tasks).
So the sorting order can be fetched and patched through the field "OrderDateTime".
Fetch example (GET):
Reordering Example (PATCH):
GraphAPI To-Do
The main idea is to get the custom sorting order to listing and patching endpoints of GraphAPI, which currently seems not to be working.
Postman failing to order by Same OData "orderBy" used by Outlook API:
Has anyone had a similar issue w/ MS To-Do and GraphAPI?
Question similar to: How to order tasks by importance in microsoft todo task graph API?, but more detailed on different APIs and less confusing in "importance" as this is also a field from To-Do as "High", "Normal" and "Low" order (3 states) only.