Time Zone
Friday, June 28, 2019 at 11:09amHello,
Suppose I am signing a document from outside ON like Vancouver, what time stamp it will be captured in the system. How I can capture the timestamp for the person who is signing from different province with different time.
Thanks
Nehme
Reply to: Time Zone
Friday, June 28, 2019 at 11:48amEslClient eslClient = new EslClient(apiKey, apiUrl); string packageId = "VKAgZXhnfJ4HNmgD1c5wqAP6lCQ="; DocumentPackage pkg = eslClient.GetPackage(new PackageId(packageId)); foreach (var document in pkg.Documents) { foreach (var signature in document.Signatures) { DateTime? dateTime = signature.Accepted; Debug.WriteLine(dateTime); } }What print out in my VS console are: What actually appear in my package metadata are: Both of them are in GMT time, no matter what timezone you've setup and where the signer signed. Hope this could help! DuoReply to: Time Zone
Tuesday, July 2, 2019 at 06:00amReply to: Time Zone
Tuesday, July 2, 2019 at 07:06am