I need to encrypt documents when downloading them using the getDocument method in Java. When I set the "encrypt" Document Option to "true" as a parameter, I get an exception that no security appliance is configured?
I could not understand what that exactly means.
EnvelopesApi.GetDocumentOptions options = envelopesApi.new GetDocumentOptions();
options.setEncrypt("true");
byte[] results = envelopesApi.getDocument(this.accountId, envelopeId, "combined",options);
The exception comes as: "errorCode": "NO_SECURITY_APPLIANCES_CONFIGURED"