Examples for sending docs to a vault
Wednesday, September 12, 2018 at 05:31amGuys,
I am looking at the documentation for sending documents to a vault and was wondering if anyone had any examples for me to view.
https://docs.esignlive.com/content/c_integrator_s_guide/rest_api/package_settings_for_digital_lending.htm
Reply to: Examples for sending docs to a vault
Wednesday, September 12, 2018 at 09:37am{ "data":{ "registry_data":"base64string" } }And your base64 string should be organized like this, I will add some comments and you can definitely find more detailed explaination in the document site:{ "version":"eLending-1.0", "postRegisterOption":"blank_doc/watermark_doc", "vaults":[ { "transaction":"your transaction name", "orgId":"your eVM id", //eVM id pointing to your #2 eVM account "vaultId":"your vault id" //vault id pointing to your vault assigned to your eVM account } ], "registryRecords":[ { "documentId":"document1 id", "registryId":"your registry id", //a unique registry id following your own naming convention "borrowers":[ "role id 1", "role id 2", ...... ], "loanId":"LoanID1", "loanAmount":"999999", "lender":"ABC Corporation", //please refer to document "vaultId":"your vault id" //same one to the above one }, { ...... } ] }And the attachment is a sample JSON payload to create a package. Hope this could help you! DuoReply to: Examples for sending docs to a vault
Friday, September 14, 2018 at 08:28amReply to: Examples for sending docs to a vault
Friday, September 14, 2018 at 09:03amReply to: Examples for sending docs to a vault
Friday, September 14, 2018 at 12:10pmReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 06:40amReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 06:47amReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 07:06am{ "vaults":[ { "orgId":"xxxx", "vaultId":"xx" // need a quotation mark } ], "registryRecords":[ { "documentId":"5e684a8d67f78b112f669d099db8e7563508cf782341142f", "registryId":"eLend_Smoketest_6acde9a4-c6b3-4366-b9fa-9172018-1", "borrowers":[ "268cb255-30cc-459f-b1bd-64b299fd7410" ], "loanId":"LoanID9172018-1", "loanAmount":"12345", // also need a quotation mark, if you don't put a comma, last two digits are small numbers "lender":"ABC Corporation", } ] }BTW, I sent a document to your vault, please delete that. :) DuoReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 07:48amReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 08:29amReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 08:45amReply to: Examples for sending docs to a vault
Monday, September 17, 2018 at 08:52am