cs_api_dotnet.CaseStackApi.Authenticate C# (CSharp) Method

Authenticate() public method

Authenticate API Access. Your credentials are available under the 'Settings > CaseStack API'.
public Authenticate ( String key, String companyId ) : void
key String Your API Key
companyId String Your Company ID
return void
        public void Authenticate(String key, String companyId)
        {
            _apiKey = key;
            _companyId = companyId;
        }