Esempio n. 1
0
 public string GetAuthenticationToken(string Email, string Password, string AccountID, string GoToEnvelopeID)
 {
     DocuSignAPI.CredentialService.GetAuthenticationTokenRequest inValue = new DocuSignAPI.CredentialService.GetAuthenticationTokenRequest();
     inValue.Body                = new DocuSignAPI.CredentialService.GetAuthenticationTokenRequestBody();
     inValue.Body.Email          = Email;
     inValue.Body.Password       = Password;
     inValue.Body.AccountID      = AccountID;
     inValue.Body.GoToEnvelopeID = GoToEnvelopeID;
     DocuSignAPI.CredentialService.GetAuthenticationTokenResponse retVal = ((DocuSignAPI.CredentialService.CredentialSoap)(this)).GetAuthenticationToken(inValue);
     return(retVal.Body.GetAuthenticationTokenResult);
 }
Esempio n. 2
0
 DocuSignAPI.CredentialService.GetAuthenticationTokenResponse DocuSignAPI.CredentialService.CredentialSoap.GetAuthenticationToken(DocuSignAPI.CredentialService.GetAuthenticationTokenRequest request)
 {
     return(base.Channel.GetAuthenticationToken(request));
 }