Editing Field Values using /api/packages/{packageId}/clone right
Sunday, November 11, 2018 at 05:11pmCurrently trying to customize my package.... It is an existing template on my sandbox and I would like to be able to customize the fields each time I clone the package. Is this possible?
This is the current JSON payload I am sending... the signer information works but the fields are not working. They are "Labels" on my template with Name's as shown in the fields portion and no value.
var payload = { "status": "SENT", "name": "Package created from template through REST API", "roles": [ { "id": "5e4f1718-24f2-424f-94bc-9de4bc183680", "signers": [ { "id": "placeholderId2", "firstName": "Nicole", "lastName": "Weese", "email": "[email protected]", } ] } ], "documents": [ { "id": "default-consent" }, { "fields": [ { "extract": true, "value": "12345678790", "name": "SSN" }, { "extract": true, "value": "12345678790", "name": "SSN2" }, { "extract": true, "value": "12345678790", "name": "recipientPhone" }, ], "extract": true, "id": "f13e975b4404f250fb68feefd3db66f3d225c2dfb0840838", }, ] }
Reply to: Editing Field Values using /api/packages/{packageId}/clone right
Monday, November 12, 2018 at 02:27amReply to: Editing Field Values using /api/packages/{packageId}/clone right
Monday, November 12, 2018 at 08:18amReply to: Editing Field Values using /api/packages/{packageId}/clone right
Monday, November 12, 2018 at 08:28am/fields/{fieldId}
to specify which field you want to update, it was a mistake made by me. And the payload should be a fully dressed one instead of simplified one. Duo