You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 17, 2023. It is now read-only.
When I get a SignatureRequest objects using GetSignatureRequest(), even ones that I know were made using embedded signing, the IsForEmbeddedSigning field is always false. A simple example:
varclient=newHelloSign.Client(apiKey);varrequest=client.GetSignatureRequest(id);// Always prints falseConsole.WriteLine("IsForEmbeddedSigning: {0}",request.IsForEmbeddedSigning);
Does this field do anything? Is there any way to tell if a request was embedded or not?