Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Meaning of `authenticationMethod` and `authenticationInstant` in "Post Recipient View"

Tags:

docusignapi

According to the API docs for "Post Recipient View", the attributes mean:

authenticationMethod: A sender created value that indicates the convention used to authenticate the signer. This information is included in the Certificate of Completion.

authenticationInstant: A sender generation[sic] value that indicates the date/time that the signer was authenticated.

I'm not sure what is meant by "the convention used to authenticate the signer". My users are authenticated via Email/Password, as is fairly common. What are the valid values for these attributes ("EmailWithPassword" was not accepted by the API)? What value corresponds to "authentication via password"?

like image 883
Simon Lepkin Avatar asked Jun 18 '15 00:06

Simon Lepkin


1 Answers

The authenticationMethod is a required field/metadata that is added to the Certificate of Completion. It is in your best interest to supply a value that best describes how your application authenticated the signer so you have an accurate replay/history when reviewing the certificate of completion. Accepted values listed below:

  • "Password"
  • "Email"
  • "PaperDocuments"
  • "HTTPBasicAuth"
  • "SSLMutualAuth"
  • "X509Certificate"
  • "Kerberos"
  • "SingleSignOn_CASiteminder"
  • "SingleSignOn_InfoCard"
  • "SingleSignOn_MicrosoftActiveDirectory"
  • "SingleSignOn_Passport"
  • "SingleSignOn_SAML"
  • "SingleSignOn_Other"
  • "Smartcard"
  • "RSASecureID"
  • "Biometric"
  • "None"
  • "KnowledgeBasedAuth"
like image 92
Luis Scott Avatar answered Jan 08 '23 10:01

Luis Scott