access a document which created in sandbox
Friday, January 3, 2020 at 04:48amcan we able to create the template in sandbox UI and send the created template through Rest Api.
OneSpan Introduces DigipassONE, Bringing a Unified Platform Approach to Authentication Modernization
A new authentication platform helps financial institutions support diverse customer authentication preferences while modernizing at their own pace Learn More
Reply to: access a document which created in sandbox
Friday, January 3, 2020 at 06:12amPOST /api/packages/{templateId}/cloneHTTP Headers Request Payload{ "status" : "SENT" }Response Payload{ "id": "9sKhW-h-qS9m6Ho3zRv3n2a-rkI=" }Few notes: (1) you can clone and send the package within the same API call (2) you can override package level settings by adding more attributes in the payload (3) if you have placeholder signer (guide here) involved in your template, you need to replace the placeholder with actual signer information, in this payload Check the Create Package From Template guide for more detailed instructions. DuoReply to: access a document which created in sandbox
Friday, January 3, 2020 at 08:10amReply to: access a document which created in sandbox
Friday, January 3, 2020 at 08:28amhttps://sandbox.esignlive.com/api/packages/{your_template_id}, the template related information should be returned in JSON (3) format the JSON and find the "roles" array, check the role named "Signer1" and you will find the role ID there, which normally looks like below:{ "id": "753564c2-76bc-4bcf-8a16-b9b6473dcbd1", "specialTypes": [], "locked": false, "emailMessage": { "content": "" }, "reassign": false, "deliverDocumentsByEmail": false, "attachmentRequirements": [], "index": 0, "type": "SIGNER", "data": null, "signers": [], "name": "Signer1" }DuoReply to: access a document which created in sandbox
Friday, January 3, 2020 at 08:40amReply to: access a document which created in sandbox
Friday, January 3, 2020 at 08:57amReply to: access a document which created in sandbox
Friday, January 3, 2020 at 09:12amReply to: access a document which created in sandbox
Friday, January 3, 2020 at 10:26amReply to: access a document which created in sandbox
Monday, January 6, 2020 at 04:21amReply to: access a document which created in sandbox
Tuesday, January 7, 2020 at 06:11amGET /api/packages/{packages}If you knew the specific document ID or approval ID, you can use below API instead:GET /api/packages/{packages}/documents/{documentID} GET /api/packages/{packages}/documents/{documentID}/approvals/{approvalID}(2) Change the values of the fields. (3.1) If you only have few fields to update, you can update them one by one by below API, with the updated field JSON as payload:PUT /api/packages/{packageId}/documents/{documentId}/approvals/{signatureId}/fields/{fieldId}(3.2) If you want to update fields under the same signature in bulk, you'd update the whole signature/approval:PUT /api/packages/{packageId}/documents/{documentId}/approvals/{signatureId}/Keep the signature JSON intact as the payload and only change the field value attribute. Both 3.1 or 3.2 required to pass in the complete field/signature JSON, partial metadata will cause information lost. Duo