Delete Signers

POST /esignglobal/v1/envelope/recipients/deleteSigners

Interface Description

Delete signers from an existed draft envelope.

Request Parameters

Parameter

Type

Required

Description

envelopeId

string

true

Envelope ID

signerInfos

array

true

Signatory Information

 

userEmail

string

true

Signatory Email Address

Request Example

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

Responses

Parameter

Type

Description

envelopeId

string

Envelope ID

signFiles

array

Documents Information

 

fileKey 

string

Document fileKey

attachments

array

Envelope Attachment

 

fileKey 

string

Attachment fileKey

signerInfos

array

Signing Information

 

businessId

string

Developer customized business number

 

userEmail

string

Email Address of signatory

 

userName

string

Name of signatory

 

signOrder

int

Sign order of signatory

 

accessCode

string

Access code content of signatory

Response Example

{
	"code": "0",
	"message": "success",
	"data": {
		"envelopeId": "flow1234567890",
		"signerInfos": []
	}
}

 

Interface Description
Request Parameters
Request Example
Responses
Response Example