Signer Token Request
Friday, October 28, 2016 at 04:53amWhen requesting a signer session token via REST API, we pass the packageId and signerId. How does the signerId: [email protected] match up with the json package? Looks like it goes off what is specified in the roles:signers:email section?
string jsonString = "{\"packageId\": \"" + package.PackageId + "\",\"signerId\":\"[email protected]"}";
StringContent jsonContent = new StringContent(jsonString, Encoding.UTF8, "application/json");
var response = httpClient.PostAsync(new Uri(apiUrl) + "/signerAuthenticationTokens/", jsonContent).Result;
Reply to: Signer Token Request
Saturday, October 29, 2016 at 05:12pmReply to: Signer Token Request
Monday, October 31, 2016 at 09:56amReply to: Signer Token Request
Tuesday, November 1, 2016 at 10:42amReply to: Signer Token Request
Wednesday, November 2, 2016 at 04:09am