eugenekgn
eugenekgn

Reputation: 1722

Is there a way in docusign NodeJS to authenticate using X-DocuSign-Authentication

This is something that worked very well in our PHP environment and looks like something like this

 $config->addDefaultHeader("X-DocuSign-Authentication", "{\"Username\":\"" . config('docusign.email') . "\",\"Password\":\"" . config('docusign.password') . "\",\"IntegratorKey\":\"" . config('docusign.integrator_key') . "\"}");

Upvotes: 0

Views: 67

Answers (1)

Larry K
Larry K

Reputation: 49104

That is "legacy" authentication. It is not supported for new integrations. Plus it is not as secure as oauth, and does not support SSO, or 2FA.

Oauth works well and we will assist you if you have problems with it.

Upvotes: 1

Related Questions