I have a Docusign process/integration in the works. I have workflow creating the envelope and everything seems to work. However, after signing the document comes back to Laserfiche and it seems to come back into two places.
1. It puts the document on the root of the repository.
2. It puts it into the ~Incoming Docusing folder (which is where I want it to go).
Below is the Laserfiche Config file that is setup (server and creds changed). You can see that for Default folder I have ~Incoming Docusign.
<?xml version="1.0" encoding="utf-8"?> <AppConfigurationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <LoginInfo> <LaserficheServer>server</LaserficheServer> <LaserfichePortNumber>80</LaserfichePortNumber> <LaserficheRepository>repo</LaserficheRepository> <LaserficheUserName>admin</LaserficheUserName> <LaserfichePassword>test</LaserfichePassword> </LoginInfo> <Events> <OnSignedEvent> <FieldValues> <FieldValue name="EntryId">%(CustomFields.EntryID)</FieldValue> </FieldValues> <DocumentNotFound> <DefaultFolder>\~Incoming Docusign</DefaultFolder> </DocumentNotFound> </OnSignedEvent> <OnDeclinedEvent> <FieldValues> </FieldValues> <DocumentNotFound> <DefaultFolder>\*Signing Declined</DefaultFolder> </DocumentNotFound> </OnDeclinedEvent> <OnVoidedEvent> <FieldValues> </FieldValues> <DocumentNotFound> <DefaultFolder>\*Signing Voided</DefaultFolder> </DocumentNotFound> </OnVoidedEvent> </Events> <Features> <EnableApplicationLogging>false</EnableApplicationLogging> <NotificationLevel>Error</NotificationLevel> <EnableAutomaticRetry>false</EnableAutomaticRetry> </Features> <ErrorNotifications Enabled="false"> <!-- Error , Warning, Information, None --> <NotificationLevel>Error</NotificationLevel> <EmailHost></EmailHost> <!-- 0 equals Auto --> <EmailPort>0</EmailPort> <!-- <EmailInterval>60</EmailInterval> --> <!-- Leave blank if not necessary --> <EmailUserName></EmailUserName> <EmailPassword></EmailPassword> <EmailUseSSL>false</EmailUseSSL> <Recipients> <Recipient></Recipient> </Recipients> </ErrorNotifications> </AppConfigurationData>
Here you can see that the document and its certificate comes back to the Incoming folder:
But also to the root:
According to the config file it should only be going to the Incoming folder. I am not sure where/why it is also going to the root. Any idea what could be missing or wrong with the LF config?
Thanks,
Chris