Downloading all transaction package files
Monday, November 5, 2018 at 06:53amHello,
Is there a REST API call to GET a zip file containing all packages from the eSignLive account? Main reasons would be for pdf archival of all the transactions flowing through the system.
I'm using Postman and curious what the GET call would be.
Thanks in advance.
Ryan
Reply to: Downloading all transaction package files
Monday, November 5, 2018 at 08:06amDownload Documents Zip HTTP Request GET /api/packages/{packageId}/documents/zip HTTP Headers Accept: application/zip Authorization: Basic api_keyAnd you can use this API to retrieve multiple package IDs(at most 100 packages per return) of an account by adding query parameters like:GET /packages?from=0&to=99You can find all Query Parameters in this guide Hope this could help! Duo