Extraction and the populated field names in the signed PDF
Tuesday, August 13, 2019 at 08:13amHi,
Is there a way to use the field extraction feature and also set the name of the (form) fields in the pdf to store the data.
In my PDF for signing I set the following:
Field [Title], Value [Project Manager]
Field [[Client.Capture1.label1.Name]], Value []
Field [[Client.Capture1.label1.Date]], Value []
Field [[Client.Capture1.]], Value []
and I enable extraction when I build the package:
....withDocument(DocumentBuilder.newDocumentWithName("Test Sign doc").fromFile(myPdfFileName).enableExtraction()).build();
however when I get the PDF back / look at the field summaries:
Format: SignerId | DocumentId | FieldId : FieldValue // Function Calls: fieldsummary.getSignerId(), .getDocumentId() .getFieldId() , .getFieldValue()
I see the following displayed:
Client, | ce934053459349593405934 | 5345345345342: Mr. Manager
Client, | ce934053459349593405934 | 7899789789787: 2019-08-09T13:07:242
I saw the feature guide (https://developer.esignlive.com/guides/feature-guides/retrieve-field-values/) where it had nice names but nothing about the PDF used.
Can I set the FieldId with extraction to be a more "nicer name" like client_name and client_signerdate __OR__ put the values into the [[Client.Capture1.label.Name]] form fields ?
Thanks
~Patrick
Reply to: Extraction and the populated field names in the signed PDF
Tuesday, August 13, 2019 at 08:57am{{Xesl[_fieldName]:roleName:fieldType[:parameter1,parameter2,...]}}
And for position extraction feature, you can assign the field name and even ID during adding the field through SDK. Hope this could help! DuoReply to: Extraction and the populated field names in the signed PDF
Wednesday, August 14, 2019 at 01:46am