Can't find the documentid
Friday, November 10, 2017 at 09:22amI am new to the eSign process and need to be able to download a completed PDF document not a zip file with the document in it.
I see the process to do that is:
byte[] pdfDocumentBytes = eslClient.downloadDocument(packageId, documentId);
But I have found no way to get the documentid.
Could you please help me with the process of getting the documentid.
Reply to: Can't find the documentid
Friday, November 10, 2017 at 10:18am.WithDocument(DocumentBuilder.NewDocumentNamed("sampleAgreement") .WithId(documentId) .FromStream(fs, DocumentType.PDF) .WithSignature(SignatureBuilder .SignatureFor("[email protected]") .OnPage(0) .AtPosition(175, 165)) .WithSignature(SignatureBuilder .SignatureFor("[email protected]") .OnPage(0) .AtPosition(550, 165)) )Reply to: Can't find the documentid
Wednesday, November 15, 2017 at 05:46amReply to: Can't find the documentid
Wednesday, November 15, 2017 at 06:15am