GetSignerInviteToken

Returns – A RequestResponse containing a signer invitation token. (See RequestResponse in Appendix B)

Parameters

Name Type Description
encryptedToken string Required. Encrypted Token returned from client authentication. Returns null if token has expired or
is invalid.
id string Required. The id of the signer to creates an invitation token for.

 

Example – C#
[gdlr_notification icon=”none” type=”color-border” border=”#31BEF9″ color=”#000000″]ServiceAPIClient ws = new ServiceAPIClient();

RequestResponse requestResponse;

requestResponse = ws.GetSignerInviteToken(encryptedToken, “id”);

[/gdlr_notification]