I am using DocuSign C# SDK (sorry I am new to this) doing a POC at work - created integration key in the demo account.
Using the below example to test authentication. https://github.com/docusign/docusign-csharp-client/blob/master/README.md
I keep getting this error - The specified Integrator Key was not found or is disabled -- even after creating the integration key again.
const string docuSignDemoIntegrationKey = "2ce4-3508-f3b-da8b74d79daf";
const string docuSignDemoApiUserName = "a1f8--4db8-9a39-2bd4f175";
string oauthBasePath = "account-d.docusign.com";
string privateKeyFilename = @"C:\WorkStation\Projects\DocuSign\PrivateKey2.pem";
int expiresInHours = 1;
string host = "https://demo.docusign.net/restapi";
string accountId = string.Empty;
ApiClient apiClient = new ApiClient(host);
apiClient.ConfigureJwtAuthorizationFlow(docuSignDemoIntegrationKey, docuSignDemoApiUserName, oauthBasePath, privateKeyFilename, expiresInHours);
AuthenticationApi authApi = new AuthenticationApi(apiClient.Configuration);
LoginInformation loginInfo = authApi.Login();