POST /esignglobal/v1/envelope/recipients/addCCs
Interface Description
Add CC recipients to envelopes. eSignGlobal will automatically send an email notification the CC recipients once the envelope is in progress. CC recipients have view-only access.
Note:
- Applicable only to draft ,in progress envelopes.
- The display order of CC recipients does not affect the sequence in which email notifications are sent after the envelope is completed.
- The same CC (with the email address as the user's unique identifier) cannot be added repeatedly.
Request Parameters
Request Parameters
{
"envelopeId": "flow1234567890",
"CCInfos": [{
"userEmail": "buweiqiang@xxxx.com",
"userFirstName": "WeiQiang",
"userLastName": "Bu"
},{
"userEmail": "tiandou@xxxx.com",
"userName": "dou"
}
}
Responses
Response Example
{
"code": "0",
"message": "成功",
"data": {
"envelopeId": "flow1234567890",
"CCInfos": [{
"userEmail": "buweiqiang@xxxx.com",
"userName": "WeiQiang"
},{
"userEmail": "tiandou@xxxx.com",
"userName": "dou"
}]
}
}