Delete Cc Recipients

POST /esignglobal/v1/envelope/recipients/deleteCCs

Interface Description

Delete CC recipients from an existed draft envelope.

Request Parameters

Parameter

Type

Required

Description

envelopeId

string

true

Envelope ID

CCInfos

array

true

Cc Recipient Information

 

userEmail

string

true

Recipient Email Address

Request Example

{
	"envelopeId": "flow1234567890",
	"CCInfos": [{
		"userEmail": "buweiqiang@xxxx.com"
	}]
}

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": "tiandou@xxxx.com",
			"userName": "dou"
		}]
	}
}

 

Interface Description
Request Parameters
Request Example
Responses
Response Example