How to Access Document Fields - Fields count is 0.
Monday, February 27, 2017 at 06:38amI'm trying to pull down completed packages and read the fields. None of my documents have the fields array populated. The fields were created from an existing fillablePDF using the API to create the template.
CompletionReport sdkCompletionReport = eslClient.ReportService.DownloadCompletionReport(DocumentPackageStatus.COMPLETED, DateTime.MinValue, DateTime.MaxValue); foreach (SenderCompletionReport senderCompletionReport in sdkCompletionReport.Senders) { foreach (PackageCompletionReport packageCompletionReport in senderCompletionReport.Packages) { DocumentPackage pkg = eslClient.GetPackage(new PackageId(packageCompletionReport.Id)); Document d = pkg.Documents[1]; // no fields in d.Fields ...
Reply to: How to Access Document Fields - Fields count is 0.
Monday, February 27, 2017 at 06:59am