Sir,
We are using 4 REST API CALLS to merge the document
-
Getting Authorization token by using the following API
curl -v “https://api.aspose.cloud/connect/token” -
Upload PDF file from Local to Aspose Cloud storage
curl -X PUT “https://api.aspose.cloud/v3.0/pdf/storage/file/Test.pdf” -
Merge more than one PDF in the Aspose Cloud storage
curl -X PUT “https://api.aspose.cloud/v3.0/pdf/Merge.pdf/merge”
4.Download Merged document from Aspose cloud storage to Local folder
curl -X GET “https://api.aspose.cloud/v3.0/pdf/storage/file/Merge.pdf”
Sir…Is it possible to take the PDF in source folder , merge it and store the merged document in the source folder itself ?
For example, I am using the Appian cloud Platform as service platform. I am having the document folder in Appian cloud. There I will store all the documents. Is it possible by using the single ASPOSE Rest API , which will call the PDF from the source Appian folder , combine it and store the merged PDF in the same Appian folder instead of uploading the document in Aspose storage?
Is it possible to call a Single REST API which can do this task instead of calling four different rest api?
regards
Srii