Forums
Hi Team, I need to pass a custom field while creating a package. But the custom field is showing in the document while signing, since I have mentioned it as Type:"INPUT", SubType:"CustomField". But, I should not be showing the field to user while signing the document. So, Is there any other field type that I can use for this purpose?. Thanks in advance.
Forums
Guys, I am building the JSON package and sending it up via the REST API. For whatever reason the system notifies the signers but the notary is not getting sent the email. I've tried changing the signing order to have the index on the notary be first but that still doesn't work. Am I doing something wrong or is there a special way to force an email notification to the notary.
Forums
Is it possible to send multiple documents via one API call and one transaction? This is similar to the code in the example, can I just append each file to a new form for the MultipartFormDataContent? ByteArrayContent content = new ByteArrayContent(fileByteArray); content.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data"); content.Headers.ContentDisposition.Name = "\"file\""; content.Headers.ContentDisposition.FileName = "\"" + MiscFunctions.RemoveSpecialCharacters(pdfDoc.Name) + ".pdf" + "\"";