GetSignerInviteToken

URI GET rest/v1/signers/{signerId}/token

Returns – A RequestResponse containing the encryptedToken string in the ReturnValue property. (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″]

string uri =“/v1/signers/{0}/token”;

uri = string.Format(uri, id);

RequestResponse requestResponse;

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(host + uri);
request.Headers.Add(“Authorization” , encryptedToken);
request.Method = “GET”;
request.ContentType = “application/json”;

HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string responseString = new StreamReader(response.GetResponseStream()).ReadToEnd();
requestResponse = jss.Deserialize<RequestResponse>(responseString);

[/gdlr_notification]