Integrating the Docusign Provider
June 18, 2024 ยท View on GitHub
Example
services.AddAuthentication(options => /* Auth configuration */)
.AddDocusign(options =>
{
options.ClientId = "my-client-id";
options.ClientSecret = "my-client-secret";
options.Environment = DocusignAuthenticationEnvironment.Production;
});
Required Additional Settings
| Property Name | Property Type | Description | Default Value |
|---|---|---|---|
Environment | DocusignAuthenticationEnvironment | The target online environment for Docusign authentication. | DocusignAuthenticationEnvironment.Production |
Optional Settings
None.