Prevent myself from being added as a signer
Friday, March 4, 2022 at 11:41amHi,
On the attached code, the template created always include myself as a signer. How can I stop this from happening?
Hi,
On the attached code, the template created always include myself as a signer. How can I stop this from happening?
Reply to: Prevent myself from being added as a signer
Friday, March 4, 2022 at 12:23pmHi David,
Please be aware that the sender will always be added as a signer to the transaction (no matter created from UI or code). However, adding below line should be able to hide the sender from the recipient list in UI:
DocumentPackage pkg = PackageBuilder.NewPackageNamed("Package Name")
......
.WithAttributes(new DocumentPackageAttributesBuilder()
.WithAttribute("senderVisible", false)
)
.Build();
Duo