OOB Docusign webhook rest API is not updating Recipients tableDescriptionThe data on the Recipients table is not getting updated - Following fields are not getting updated 1. ID2. Signing Order3. Status Envelope API | /api/sn_docusign_spoke/docusign_webhook?api=apiHowever, the lines will be executed only if the recipients with id, signing order exists in the table 'sn_docusign_spoke_recipients'. var recipient_index = getRecipientIndex(recipient.getValue("email"),recipient.getValue("signing_order"), xmlDoc );SEVERE *** ERROR *** sn_docusign_spoke: Recipient not foundRelease or EnvironmentDocuSign Spoke 2.4.1 DocuSign Spoke 2.4.2CauseCannot read property "signers" from undefined" when docusign calls our OOB WebHook URLResolutionWorkaround : Change below line of code which was impacting the integration: var recipient_index = getRecipientIndex(recipient.getValue("email"),recipient.getValue("signing_order"), xmlDoc ); >> Not Working var recipient_index = getRecipientIndex(recipient.email, xmlDoc); >> Working Permanent Fix: Install/Upgrade to latest version of DocuSign 2.5.0 or later.