Account


Earned badges

Achievement: Latest Unlocked

Topic Started

Topics
Hi, Is Optional signatures feature available now? If so, please provide me the link for latest documentation.
Hi, We have been using SMS Authentication for Signing Ceremony. First time when user clicks on link in email, a sms was sent.
Is it possible to break down the date into Year, Month and Date into 3 different columns using REST APIs?
Can you please point me or give me example of json needs to be added to add signing date in a document (Using REST API)
Hi, If our application somehow missed the callback event of opt-out/decline, is there any REST API which can be used to fetch the details about signer who opted-out/decline and with what reason?

Replies Created

Reply to: JSON Schema References

0 votes
Hi, The API schema documentation URL seems to have been changed. https://docs.e-signlive.com/10.0/schema/index.html is not working anymore. Can you please provide me the updated URL.

Reply to: JSON Schema References

0 votes
Hi Duo, Thanks for quick reply. But I am more interested in schema documentation. That link was great help while to depict which field is of what type. It seems the link has been changed. Can you please provide me with new link?

Reply to: Removing a Signer after they Decline/Opt-Out

0 votes
If I have more than 1 signers and one of them have opt-out. How would DR come to know which one has opt-out? I know there is API to get Opt-out messag?es, but to remove the signer from the package I need to know which one it should be. Can you please provide link to such API?

Reply to: name cannot be null or empty

0 votes
Hi, I am trying to send pdf document and JSON request to eSignLive using RestEasy library. But if I use below code, I end up with error {"messageKey":"error.internal.default","technical":"name cannot be null or empty","code":500,"name":"Unhandled Server Error","message":"Unexpected error. We apologize for any inconvenience this may have caused you, please try again. If the problem persists, please contact our support team."}
String basicAuthentication = "Basic API Key";
        String boundary = Long.toHexString(System.currentTimeMillis());
        ClientRequest cr = new ClientRequest("https://sandbox.esignlive.com/api/packages/")
                .header(HttpHeaders.AUTHORIZATION, basicAuthentication);
        cr.accept(MediaType.APPLICATION_JSON_TYPE);

MultipartFormDataOutput mro = new MultipartFormDataOutput();
OutputPart filePart = mro.addFormData("file", new FileInputStream("C:\\esign\\My File_Edit.pdf"), MediaType.APPLICATION_OCTET_STREAM_TYPE);
mro.addFormData("payload", eSignLivePackage, MediaType.APPLICATION_JSON_TYPE);
       
        cr.body("multipart/form-data",mro);
And if I use code,
String basicAuthentication = "Basic API Key";
        String boundary = Long.toHexString(System.currentTimeMillis());
        ClientRequest cr = new ClientRequest("https://sandbox.esignlive.com/api/packages/")
                .header(HttpHeaders.AUTHORIZATION, basicAuthentication);
        cr.accept(MediaType.APPLICATION_JSON_TYPE);

MultipartFormDataOutput mro = new MultipartFormDataOutput();
OutputPart filePart = mro.addFormData("file", new FileInputStream("C:\\esign\\My File_Edit.pdf"), MediaType.APPLICATION_OCTET_STREAM_TYPE);
filePart.getHeaders().add("Content-Disposition: ", "form-data; name=\"file\"; filename=\""+ "My File_Edit.pdf");
mro.addFormData("payload", eSignLivePackage, MediaType.APPLICATION_JSON_TYPE);
       
        cr.body("multipart/form-data",mro);
then get error: "technical":"Number of uploaded files does not match number of documents specified in package.","messageKey":"error.validation.package.wrongNumberOfFiles","message":"Number of uploaded files does not match number of documents specified in package.","code":400,"name":"Validation Error"} Please help me figure out whats missing here.

Reply to: name cannot be null or empty

0 votes
Thanks for the quick reply. I figured out the problem. I was missing
+"\""
from the end of filename for future reference of others it should be
 filePart = mro.addFormData("file", new FileInputStream("C:\\esign\\My_test.pdf"), MediaType.APPLICATION_OCTET_STREAM_TYPE);
            filePart.getHeaders().add("Content-Disposition", "form-data; name=\"file\"; filename=\"" +"My_test.pdf" +"\"");
            OutputPart filePart1 = mro.addFormData("file1", new FileInputStream("C:\\esign\\PDFFile.pdf"), MediaType.APPLICATION_OCTET_STREAM_TYPE);
            filePart1.getHeaders().add("Content-Disposition", "form-data; name=\"file\"; filename=\"PDFFile.pdf\"");
            mro.addFormData("payload", eSignLivePackage, MediaType.APPLICATION_JSON_TYPE);

Subscriptions

Topics Replies Freshness Views Users
Hi, Is Optional signatures feature available now? If so, please provide me the link for latest documentation.
2 5 years 6 months ago 28
Profile picture for user Duo_Liang
Hi, We have been using SMS Authentication for Signing Ceremony. First time when user clicks on link in email, a sms was sent.
1 5 years 8 months ago 58
Profile picture for user Duo_Liang
Is it possible to break down the date into Year, Month and Date into 3 different columns using REST APIs?
3 5 years 9 months ago 10
Profile picture for user Duo_Liang
Can you please point me or give me example of json needs to be added to add signing date in a document (Using REST API)
13 3 years 1 month ago 660
Profile picture for user Duo_Liang
Profile picture for user tatternutz
Hi, If our application somehow missed the callback event of opt-out/decline, is there any REST API which can be used to fetch the details about signer who opted-out/decline and with what reason?
3 5 years 11 months ago 19
Profile picture for user harishaidary

Code Share

This user has not submitted any code shares.

Subscriptions Release Notes

This user is not subscribed to any release notes.