You need to sign in to do that
Don't have an account?
JeffreyStevens
Echosign integration send an agreement from code
Looking for a way to SEND Echosign agreements from code.
I have echosign installed and it's working well. I also build the agreement from code and it works well. Now, I would like to actually do the SEND from code.
So far - all of the examples I have seen - have been for creating a custom SEND button - utilizing the AgreemenTemplateProcess VF page, and specifiying the MasterID. But - in this case - I've already built the agreement, and custom PDF attachment.
Any thoughts?
Thanks
I have echosign installed and it's working well. I also build the agreement from code and it works well. Now, I would like to actually do the SEND from code.
So far - all of the examples I have seen - have been for creating a custom SEND button - utilizing the AgreemenTemplateProcess VF page, and specifiying the MasterID. But - in this case - I've already built the agreement, and custom PDF attachment.
Any thoughts?
Thanks
I changed the field echosign_dev1__Background_Action__c to "Send" and updated the echosign_dev1__SIGN_Agreement__c object record, and it sent the agreement out.
All Answers
You can check the details in below link might help you.
http://astreait.com/Sending_Echosign_Agreements/
If you are ok in this link let me know And you can also share with me if you have any other issues?
Regards,
Scott Haleo
@Hytechpro.com
I changed the field echosign_dev1__Background_Action__c to "Send" and updated the echosign_dev1__SIGN_Agreement__c object record, and it sent the agreement out.
So, here is the code in my controller...
So, basically - I have the page that produces the PDF content. (with the embedded {{Sig_es_:signer2:signature}} code for the actual signature line). I build a blob of that page, then I build the echosign_dev1__SIGN_Agreement__c record - filling in most of the fields. After it's inserted - then I link to that record and make them do the actual "Send". I think there is a field that can be set that makes the Send automatic though.
Hope that helps