Reputation: 1722
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
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