Add CC Recipients

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:

  1. Applicable only to draft ,in progress envelopes.
  2. The display order of CC recipients does not affect the sequence in which email notifications are sent after the envelope is completed.
  3. The same CC (with the email address as the user's unique identifier) cannot be added repeatedly.

Request Parameters

Parameter

Type

Required

Description

envelopeId

string

true

Envelope ID

CCInfos

array

true

Cc Recipient Information

 

userEmail

string

true

Recipient Email Address

 

userName

string

true

Recipient Name

Note: The following 9 special characters cannot be included:/ \ : * " < > |? and all emoji

Request Parameters

{
	"envelopeId": "flow1234567890",
	"CCInfos": [{
		"userEmail": "buweiqiang@xxxx.com",
		"userFirstName": "WeiQiang",
		"userLastName": "Bu"
		},{
		"userEmail": "tiandou@xxxx.com",
		"userName": "dou"
	}
}

Responses

Parameter

Type

Description

envelopeId

string

Envelope ID

CCInfos

array

Cc Recipient Information

 

userEmail

string

Recipient Email Address

 

userName

string

Recipient Name

Response Example

{
	"code": "0",
	"message": "成功",
	"data": {
		"envelopeId": "flow1234567890",
		"CCInfos": [{
			"userEmail": "buweiqiang@xxxx.com",
			"userName": "WeiQiang"
			},{
			"userEmail": "tiandou@xxxx.com",
			"userName": "dou"
		}]
	}
}

 

Interface Description
Request Parameters
Request Parameters
Responses
Response Example