When I send a docx file, I'm receiving an error message that says:
{"errorCode":"UNABLE_TO_LOAD_DOCUMENT","message":"Unable to load the document. Unable to load Document(1;Fluig - Novos Processos.docx). Error: PDF header signature not found."}
I'm using JSON simple request.
These are the document params I'm sending to DocuSign:
params : { "status":"created", "emailSubject":String(emailSubject), "documents":[ { "documentBase64": String(base64), "documentId":"1", "fileExtension": String(fileExtension), "name":String(fileName) } ] }
docx
that's likely the problem. To confirm, you might use API logging to capture what it looks like from the DocuSign side. – Drew