Get Field Values
Thursday, November 29, 2018 at 08:12amHi team,
There's a guide named Field Values from your Feature Guides where I've found a function in SDK to get all field values in one shot:
eslClient.getFieldValues( packageId )
My question is, is there an endpoint URL for the same function in REST? Currently, we have to iterate all fields in the package.
Thanks
Reply to: Get Field Values
Friday, November 30, 2018 at 05:24amGET /api/packages/{packageId}/fieldSummaryAnd this is a sample response: [ { "signerId": "client", "documentId": "Sample_Position_Extraction", "fieldId": "EMOrqWxo6agO", "fieldName": "client_date", "fieldValue": "2018-11-28T16:13:48Z" }, { "signerId": "client", "documentId": "Sample_Position_Extraction", "fieldId": "2QqqkLY9oSs5", "fieldName": "company", "fieldValue": "onespan" }, {...}, {...} ] Hope this could help! Duo