I would like to store a form number in Laserfiche metadata "DSForm" from a Document Custom Field I've created in DocuSign called "FormNumber". This field is one that I've built into templates that are used with Template Matching by our users.
Where I've got a problem is that if we use the same custom field more than once in an envelope the field name that is passed to Laserfiche has _1 appended to the field name.
<xfdf> <fields> <field name="FormNumber"> <value>1234</value> </field> <field name="FormNumber_1"> <value>5678</value> </field> </field </xfdf>
The first FormNumber passes just fine using:
<FieldValue name="DSForm">%(RecipientStatuses.0.TabStatuses.FormNumber.TabValue)</FieldValue>
Can achieve this by using a Document Custom Field or is there another way?
Edit: For clarity, there would be multiple PDF files in a single envelope. Each of these somehow need to be identified in Laserfiche metadata by a form number.
Thanks.