Developing my own Outlook Add-in

Hi,

To meet a specific need, I decided to develop my own Outlook Add-in under Visual Studio.

I started by creating the Outlook Add-in, the ribbon and the necessary forms.

Now I’m looking, from my C# code, to:

1- How to use Nextcloud API in Visual Studio (C#) ?
2- Connect to my Nextcloud server.
3- Upload a file from my PC, to my server.
4- Retrieve the URL returned by the server to access to the shared ulploaded file.
5- Update the new email with this URL.

Thank you.

There is a documentation about the APIs:
https://docs.nextcloud.com/server/latest/developer_manual/client_apis/index.html

There was a basic client that lets you handle files and create shares in python, perhaps it helps for some inspiration: GitHub - owncloud/pyocclient: ownCloud client library for Python