We are converting the JSON input to Docusign XML and trying to upload a document and then sending it to Docusign. But getting this error Call to URL, status :400: Error description:
<?xml version="1.0" encoding="UTF-8"?>
<errorDetails xmlns="http://www.docusign.com/restapi" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<errorCode>RECIPIENTS_NOT_PROVIDED</errorCode>
<message>No recipients were found in the request.</message>
</errorDetails>
But we do have mentioned the recipients in the xml as
<recipients>
<signers>
<signer>
<recipientId>abc@gmail.com</recipientId>
<email>abc@gmail.com</email>
<name>abc@gmail.com</name>
</signer>
</signers>
</recipients>