Rest Example for List Field
Thursday, July 25, 2019 at 11:45amHi team,
There's no working example for list field in this guide:
https://developer.esignlive.com/guides/feature-guides/fields/
Can we add some supplementary information regarding this to this guide?
Thanks!
Reply to: Rest Example for List Field
Monday, July 29, 2019 at 11:25am{ "id": "fieldId", "name": "fieldName", "type": "INPUT", "subtype": "LIST", "validation": { "required": false, "enum": [ "item1", "item2", "item3" ] }, "value":"item1", "page": 0, "left": 472, "width": 165, "height": 37, "top": 529, "extract": false }You can either use X/Y coordinates (page,top,left,width,height and extract false) or extraction methods (remove page,top,left,width,height and extract true) to locate the field. Example above using the former. Optionally, set a value for default chosen item Hope this could help! Duo