Download the completed package
Friday, August 19, 2016 at 01:14pmI have seen the example of GetCompletedPackagesWithinDateRangeExample.cs in github from the following link
https://github.com/eSignLive/esl.sdk.net/blob/master/sdk/SDK.Examples/src/GetCompletedPackagesWithinDateRangeExample.cs
I have seen the following lines of code
completedPackages = getPackagesByPackageStatus(DocumentPackageStatus.COMPLETED, START_DATE, END_DATE);
What will be next step in order to download all the documents inside of that package?
Can this be done using one your .Net SDKs.
Thanks,
Sumit
Reply to: Download the completed package
Monday, August 22, 2016 at 08:11amReply to: Download the completed package
Friday, August 19, 2016 at 07:50pmReply to: Download the completed package
Monday, August 22, 2016 at 05:29amReply to: Download the completed package
Monday, August 22, 2016 at 05:30amReply to: Download the completed package
Monday, August 22, 2016 at 11:23amReply to: Download the completed package
Friday, April 10, 2020 at 01:25pmWould like assistance to download all of our packages organized by user packages. I am not an API expert, please provide or direct me on how to start this process, leaning towards automating the packages download once a week if possible to google drive if not then provide alternatives.
Thank you,
Marclem Nascimento
Reply to: Download the completed package
Tuesday, April 14, 2020 at 09:23amHi Marclem,
Are you developing with .Net or any other programming language? And per your description "download packages organized by user", do you refer to the "senders" under your main account? Despite of these questions, below are the common steps to download all packages under an account:
(1)get all senders' IDs by their email:
you'd pull all the senders under the account, step through the list and match the email with their sender ID. (guide here)
GET /api/account/senders?from=1&to=100
This function is available for both SDK and API
(2)get each sender's API Key:
For each sender, get their API Key by using sender ID, this step is only available via API (guide here):
GET /api/account/senders/{senderId}/apiKey
(3)get the latest updated packages in a time range, per sender API Key:
Build different EslClient objects switching to sender's API Key, with corresponding parameters(guide here)
GET /api/packages?query={status}&from={from}&to={to}&lastUpdatedStartDate={lastUpdatedStartDate}&lastUpdatedEndDate={lastUpdatedEndDate}
This function is available for both SDK and API
(4)OneSpan Sign doesn't offer integration to download to Google Drive directly, you'd download the byte array first, then push to Google Drive using Google's integrations.
Duo
Reply to: Hi Marclem, Are you…
Tuesday, April 14, 2020 at 09:37amHi Duo Liang,
Thank you for the reply.
Your question "Are you developing with .Net or any other programming language?" I am not a programmer so I need assistance what to use (easier to setup) and how to setup.
Your other question: "And per your description "download packages organized by user", do you refer to the "senders" under your main account? " Would like to download all packages created by all users exporting them by user packages (right now we have 2 instances).
Thanks,
Marc Nascimento