I am trying to send a Document for signature using Docusign (Using RestAPI), It has one recipient as a Signer and one as Carbon Copy. I have pasted the JSON below and also I get a success message when calling the Rest API in the demo environment.
However the Recipient designated as CarbonCopy never gets the email, The Signer do recieves the email from Docusign
"emailSubject" : "This is the Subject of the Message",
"emailBlurb" : "This is the Body of the message",
"recipients" : {
"signers" : [ {
"routingOrder" : "1",
"name" : "Signer 1",
"email" : "[email protected]",
"recipientId" : "1",
"tabs" : {
"signHereTabs" : [ {
"anchorString" : "By:",
"anchorXOffset" : "0",
"anchorYOffset" : "0",
"anchorIgnoreIfNotPresent" : "true",
"anchorUnits" : "inches"
} ]
}
} ],
"carbonCopies" : [ {
"routingOrder" : "2",
"recipientId" : "2",
"name" : "Carbon Copy1",
"email" : "[email protected]"
} ]
},
"documents" : [ {
"name" : "document.pdf",
"documentId" : "1",
"bytes" : "document Bytes go here - Omitted to make it readable"
} ],
"status" : "sent"
}
Success Message Recieved
{ "envelopeId": "95c0cd64-7b4e-4d98-ad9c-ae74c08cf7f9", "uri": "/envelopes/95c0cd64-7b4e-4d98-ad9c-ae74c08cf7f9", "statusDateTime": "2015-10-19T21:00:30.7100000Z", "status": "sent"}
routingOrder = 1if it is the same exact recipient (i.e. email, name, and recipientId) then you will the duplicate recipients error. Is it the same recipient you are testing with? - Ergin