Trying to pull Packages from ESign regardless of Status
Wednesday, April 25, 2018 at 07:39amI have a Dynamics CRM which matches the Statuses of the ESign Packages and I need to reconcile them. Right now there are 28 Transaction in my Inbox, 16 Documents in Draft, 0 Archived and 29 in Trash. That's 73 Transactions total. What I would like to do is Iterate through each Package and write to a CSV File some basic information including the CRM ID, the ESIgn ID, a PreOrder Number and the Status of the Package.
I can then compare what I have in CRM and in ESign and see if there is anything off so that I can fix it before I have hundreds of Packages in ESign.
I can Page through the List using:
GetPackages = eslClient.PackageService.GetPackages(DocumentPackageStatus.DRAFT, new PageRequest(x, y));
and then do it again for each Status (ARCHIVED, COMPLETED, DECLINED, DRAFT, OPTED OUT and SENT) but that does not pull Trashed Packages. Also, I have to do each Status separately as opposed to something like:
GetPackages = eslClient.PackageService.GetPackages(DocumentPackageStatus.Values().All, new PageRequest(x, y));
Can you please assist?
Reply to: Trying to pull Packages from ESign regardless of Status
Friday, April 27, 2018 at 08:16amReply to: Trying to pull Packages from ESign regardless of Status
Wednesday, April 25, 2018 at 12:16pmReply to: Trying to pull Packages from ESign regardless of Status
Thursday, April 26, 2018 at 09:20amReply to: Trying to pull Packages from ESign regardless of Status
Thursday, April 26, 2018 at 09:57amReply to: Trying to pull Packages from ESign regardless of Status
Thursday, April 26, 2018 at 10:27amReply to: Trying to pull Packages from ESign regardless of Status
Friday, April 27, 2018 at 01:49amReply to: Trying to pull Packages from ESign regardless of Status
Friday, April 27, 2018 at 07:44am