Developer Center

Cancel Envelope

POST /esignglobal/v1/envelope/cancel

Interface Description

Cancel an envelope that has not been fully signed (at least one signer has not completed signing). After cancellation, the envelope will be suspended, and all signatures within it will be rendered invalid.

Request Parameters

Parameter

Type

Required

Description

envelopeId

string

true

Envelope ID

reason

string

true

Reason for cancelation

Request Example

{
	"envelopeId":"flow1234567890",
	"reason":"Signer's information was wrong."
}

Responses

Parameter

Type

Description

code

int

Response code

message

string

A brief message describing the error condition.
dataobjectData

Response Example

{
  "code": 0,
  "message": "success",
  "data": {
    null
  }
}

 

Interface Description
Request Parameters
Responses
Response Example