Inbar Gazit

Results 43 comments of Inbar Gazit

Eyal, see https://www.npmjs.com/package/docusign-esign/v/6.6.0-rc2 and let us know if it fixes this issue

The code above uses legacy authentication, you need to use OAuth 2.0 with an access token and do NOT use X-DocuSign-Authentication

Try this code instead: ``` options.resendEnvelope = "true"; Envelope envelope = new Envelope(); envelope.EnvelopeId = envelopeId; envelopesApi.Update(accountId, envelopeId, envelope, options); ```