Api Conversion Python without loading to storage

Hi,

I would like to know if there is an option to bypass the storage and stream the document to the API and get the document converted in the response from the API.
I looked through the sdk python and unfortunately it seems that we have to use your storage cloud.

Thank you in advance for your help.

@predicticeTest

I’m afraid currently, GroupDocs.Conversion Cloud does not support the requested feature. However, we have logged a ticket CONVERSIONCLOUD-379 for your requirement. We will notify you as soon as it is resolved. Meanwhile, if you do not want to use GroupDocs Cloud Storage, then you can use other third party Cloud Storage of your choice.

@predicticeTest

We have good news for you, your above requirement is implemented. Now you can convert the documents without using cloud storage. Please check the following API and sample cURL example for reference.

PUT ​/conversion Converts input document file to format specified

curl -X PUT "https://api.groupdocs.cloud/v2.0/conversion?format=docx&fromPage=1&pagesCount=0" 
-H "accept: application/json" 
-H "authorization: Bearer [Access_Token]" 
-H "Content-Type: multipart/form-data" 
-H "x-aspose-client: Containerize.Swagger" 
-F "File=@C:/Temp/02_pages.pdf" 
--output C:/Temp/Conversion_Test.docx