Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am using C# DocuSign API (envelope api) for email signature. I am sending a document with prefilled values to DocuSign. Question is - Is it possible to set ConcealValueOnDocument on fields which are readonly so that fields will be hide with asterisks

question from:https://stackoverflow.com/questions/65895501/how-to-use-concealvalueondocument-on-a-field-in-email-signature-prefilled-with-v

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Yes, you can do that with the following C# snippet:

Text textTab1 = new Text {  ConcealValueOnDocument = "true", Required = "true", Locked = "true" /* add additional properties... */ };

However, I find this odd. If the recipients cannot modify, you can set the value to be "**********" and use a custom field for any sensitive information you want to send (so it's metadata in the envelope but not visible to anyone).

ConcealValueOnDocument was intended for situations where you have signer 1 enter their SSN and signer 2 enter their SSN, but you don't want them to see eachother's SSNs... (for example).


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...