GET /esignglobal/v1/envelope/files/download
Interface Description
When the envelope is being signed or has been completed, files within the envelope can be downloaded. Downloads during the signing process are subject to flow download configuration, download permissions, and file visibility rules. If watermark asynchronous synthesis is required for files during signing, the interface returns a download task ID. Customers can obtain the file results through the download task query interface or via the download task completion callback.
Request Parameters
downloadType | string | false | File download format type:
|
Request Example
GET https://……/esignglobal/v1/envelope/files/download?envelopeId=flow1234567890&downloadType=listResponse Parameters
Response Example
{
"code": "0",
"data": {
"envelopeId": "xxxx",
"downloadUrl": "下载地址",
"envelopeStatus": 2
},
"message": "success"
}When the document is being signed and requires asynchronous watermark synthesis, the response example is as follows:
{
"code": "0",
"data": {
"envelopeId": "xxxx",
"envelopeStatus": 1,
"taskId": "task1234567890"
},
"message": "success"
}







