GroupDocs is glad to share with you that GroupDocs.Storage Cloud API features are now more simplified. Files and folders storage and their manipulation are no more dependent on the separate GroupDocs.Storage Cloud API, however, these features are available as micro-service within every GroupDocs Cloud API To be very precise, “GroupDocs.Storage Cloud has been discontinued as a separate product”.

What existing users can do?

GroupDocs.Storage Cloud API and following SDKs will only remain available on the public repositories like GitHub, NuGet, etc for the existing customers until December 31, 2020:

  • GroupDocs.Storage Cloud SDK for .NET
  • GroupDocs.Storage Cloud SDK for PHP
  • GroupDocs.Storage Cloud SDK for Ruby

Therefore, we recommend updating your applications to the latest versions of SDKs / endpoints before it is completely removed from every platform.

GroupDocs.Storage Cloud will neither be available for purchase separately nor as a part of GroupDocs.Total Cloud Product Family any more. However, the technical support welcomes you for any further queries about the migration to the latest versions.

How to work with new APIs?

The below sample shows how you were using GroupDocs.Storage Cloud API to get the list of all the files and folders within any folder:

// How to get list of files and folders using GroupDocs.Storage Cloud API
curl -v "https://api.groupdocs.cloud/v1.0/storage/folder?path=/Output" \\
-X GET \\
-H "Content-Type: application/json" \\
-H "Accept: application/json" \\
-H "authorization: Bearer TOKEN"

Above can now be done using any of the GroupDocs Cloud APIs. The below sample shows the cURL commands for GroupDocs.Conversion Cloud API to perform the same as above:

// How to get list of files and folders using GroupDocs.Conversion Cloud API
curl -X GET "https://api.groupdocs.cloud/v2.0/conversion/storage/folder/foldername?storageName=storageName" \\
-H "accept: application/json" \\
-H "authorization: Bearer TOKEN"

Support and Learning Resources