Hi Brendan,
You could do a simple PackageService.GetUpdatedPackagesWithinDateRange() to retrieve your packages in SENT status. Note that this call only returns you 10 packages at a time (up to a maximum of 50). If you have more than 50 packages, then you will need to create a loop to grab the next 50 packages (e.g. https://developer.esignlive.com/guides/feature-guides/layouts/). Then, you can go through each and grab the signing status of each signer: https://developer.esignlive.com/guides/feature-guides/signing-status/
The best way to go about this is to leverage eSignLive's callback event notification and listen for the "SIGNER_COMPLETE" event. This way you can keep track in your application of who signed and whose signature is pending. Here are a few links to get you started:
http://docs.esignlive.com/content/c_integrator_s_guide/sdk/i_reports_and_logging/event_notifications.htm
https://developer.esignlive.com/guides/feature-guides/callback-notifications/
https://www.esignlive.com/blog/esignlive-callback-event-notification-listener/
Reply to: Getting packages awaiting my signature
Wednesday, June 14, 2017 at 05:58amPackageService.GetUpdatedPackagesWithinDateRange()
to retrieve your packages in SENT status. Note that this call only returns you 10 packages at a time (up to a maximum of 50). If you have more than 50 packages, then you will need to create a loop to grab the next 50 packages (e.g. https://developer.esignlive.com/guides/feature-guides/layouts/). Then, you can go through each and grab the signing status of each signer: https://developer.esignlive.com/guides/feature-guides/signing-status/ The best way to go about this is to leverage eSignLive's callback event notification and listen for the "SIGNER_COMPLETE" event. This way you can keep track in your application of who signed and whose signature is pending. Here are a few links to get you started: http://docs.esignlive.com/content/c_integrator_s_guide/sdk/i_reports_and_logging/event_notifications.htm https://developer.esignlive.com/guides/feature-guides/callback-notifications/ https://www.esignlive.com/blog/esignlive-callback-event-notification-listener/