@@ -449,6 +449,53 @@ public interface IDocumentClient : IApiAccessor
449449 /// <returns>Task of ApiResponse</returns>
450450 Task < ApiResponse < object > > RemindDocumentAsyncWithHttpInfo ( string documentId , List < string > receiverEmails , ReminderMessage reminderMessage = default ) ;
451451
452+ /// <summary>
453+ /// Add Authentication to user.
454+ /// </summary>
455+ /// <exception cref="ApiException">Thrown when fails to make API call.</exception>
456+ /// <param name="documentId">DocumentId.</param>
457+ /// <param name="emailId">EmailID.</param>
458+ /// <param name="authenticationType">AuthenticationType.</param>
459+ /// <param name="signerOrder">SignerOrder.</param>
460+ /// <param name="newAccessCode">NewAccesscode.</param>
461+ void AddAuthentication ( string documentId , string emailId , AuthenticationType authenticationType , int ? signerOrder = default , string newAccessCode = "" ) ;
462+
463+ /// <summary>
464+ /// Add Authentication to user.
465+ /// </summary>
466+ /// <exception cref="ApiException">Thrown when fails to make API call.</exception>
467+ /// <param name="documentId">DocumentId.</param>
468+ /// <param name="emailId">EmailID.</param>
469+ /// <param name="authenticationType">AuthenticationType.</param>
470+ /// <param name="signerOrder">SignerOrder.</param>
471+ /// <param name="newAccessCode">NewAccesscode.</param>
472+ /// <returns>ApiResponse of Object(void).</returns>
473+ ApiResponse < object > AddAuthenticationWithHttpInfo ( string documentId , string emailId , AuthenticationType authenticationType , int ? signerOrder = default , string newAccessCode = "" ) ;
474+
475+ /// <summary>
476+ /// Add Authentication to user.
477+ /// </summary>
478+ /// <exception cref="ApiException">Thrown when fails to make API call.</exception>
479+ /// <param name="documentId">DocumentId.</param>
480+ /// <param name="emailId">EmailID.</param>
481+ /// <param name="authenticationType">AuthenticationType.</param>
482+ /// <param name="signerOrder">SignerOrder.</param>
483+ /// <param name="newAccessCode">NewAccesscode.</param>
484+ /// <returns>AddAuthentication.</returns>
485+ Task AddAuthenticationAsync ( string documentId , string emailId , AuthenticationType authenticationType , int ? signerOrder = default , string newAccessCode = "" ) ;
486+
487+ /// <summary>
488+ /// Add Authentication to user.
489+ /// </summary>
490+ /// <exception cref="ApiException">Thrown when fails to make API call.</exception>
491+ /// <param name="documentId">DocumentId.</param>
492+ /// <param name="emailId">EmailID.</param>
493+ /// <param name="authenticationType">AuthenticationType.</param>
494+ /// <param name="signerOrder">SignerOrder.</param>
495+ /// <param name="newAccessCode">NewAccesscode.</param>
496+ /// <returns>ApiResponse of Object(AddAuthentication).</returns>
497+ Task < ApiResponse < object > > AddAuthenticationAsyncWithHttpInfo ( string documentId , string emailId , AuthenticationType authenticationType , int ? signerOrder = default , string newAccessCode = "" ) ;
498+
452499 /// <summary>
453500 /// Revoke the document with the given document ID.
454501 /// </summary>
@@ -521,6 +568,60 @@ public interface IDocumentClient : IApiAccessor
521568 /// <returns>Task of ApiResponse (EmbeddedSendCreated).</returns>
522569 Task < ApiResponse < EmbeddedSendCreated > > CreateEmbeddedRequestUrlAsyncWithHttpInfo ( EmbeddedDocumentRequest sendRequest ) ;
523570
571+ /// <summary>
572+ /// Remove Authentication to user.
573+ /// </summary>
574+ /// <exception cref="ApiException">Thrown when fails to make API call.</exception>
575+ /// <param name="documentId">DocumentId.</param>
576+ /// <param name="emailId">EmailID.</param>
577+ /// <param name="signerOrder">SignerOrder.</param>
578+ void RemoveAuthentication ( string documentId , string emailId , int ? signerOrder = default ) ;
579+
580+ /// <summary>
581+ /// Remove Authentication to user.
582+ /// </summary>
583+ /// <remarks>
584+ /// </remarks>
585+ /// <exception cref="ApiException">Thrown when fails to make API call</exception>
586+ /// <param name="documentId">Gets or sets the document id.</param>
587+ /// <param name="emailId">Gets or sets the signer email.</param>
588+ /// <param name="zOrder">
589+ /// Gets or sets the signer's order. When signer order is enabled for a document, this order is
590+ /// used to target that particular order with given signer email. (optional)
591+ /// </param>
592+ /// <returns>ApiResponse of Object(void)</returns>
593+ ApiResponse < object > RemoveAuthenticationWithHttpInfo ( string documentId , string emailId , int ? signerOrder = default ) ;
594+
595+ /// <summary>
596+ /// Remove Authentication to user.
597+ ///</summary>
598+ /// <remarks>
599+ /// </remarks>
600+ /// <exception cref="ApiException">Thrown when fails to make API call</exception>
601+ /// <param name="documentId">Gets or sets the document id.</param>
602+ /// <param name="emailId">Gets or sets the signer email.</param>
603+ /// <param name="signerOrder">
604+ /// Gets or sets the signer's order. When signer order is enabled for a document, this order is
605+ /// used to target that particular order with given signer email. (optional)
606+ /// </param>
607+ /// <returns>Task of void</returns>
608+ Task RemoveAuthenticationAsync ( string documentId , string emailId , int ? signerOrder = default ) ;
609+
610+ /// <summary>
611+ /// Remove Authentication to user.
612+ /// </summary>
613+ /// <remarks>
614+ /// </remarks>
615+ /// <exception cref="ApiException">Thrown when fails to make API call</exception>
616+ /// <param name="documentId">Gets or sets the document id.</param>
617+ /// <param name="emailId">Gets or sets the signer email.</param>
618+ /// <param name="signerOrder">
619+ /// Gets or sets the signer's order. When signer order is enabled for a document, this order is
620+ /// used to target that particular order with given signer email. (optional)
621+ /// </param>
622+ /// <returns>Task of ApiResponse</returns>
623+ Task < ApiResponse < object > > RemoveAuthenticationAsyncWithHttpInfo ( string documentId , string emailId , int ? signerOrder = default ) ;
624+
524625 #endregion Asynchronous Operations
525626 }
526627}
0 commit comments