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:42am"roles": [ { "id": "Role1id", "signers": [ { "id": "Signer1Id", "email": "Signer1email" } ] }, { "id": "Role2id", "signers": [ { "id": "Signer2Id", "email": "Signer2email" } ] } ]You could get a token for signer 1 with Signer1Id or Signer1email. For signer 2, you'd use either Signer2Id or Signer2email. Hope this helps. Sorry for the confusion on not using the email address.Reply to: Signer Token Request
Wednesday, November 2, 2016 at 04:09am