I'm developing an application written in C# (UWP) and it seems no ready-to-use sdk is available for managing the interaction with iCloud drive (get items, create items, upload items...). Hence, I want to implement a custom iCloud drive client via rest API (in C#). I already tested the "Sign in with Apple REST API" approach and it's almost working.
Now I need to find a "clear" Apple API documentation to perform all of the operations on iCloud drive. Is there any official link? Can you provide some simple examples on how to query iCloud drive in pure rest, for example to get all of the items in a folder?
Thanks.