Delete Attachments

POST /esignglobal/v1/envelope/files/deleteAttachments

Interface Description

Delete attachments from envelopes. Attachments can be deleted at any time before the envelope is started but can only be added afterward.

Request Parameters

Parameter

Type

Required

Description

envelopeId

string

true

Envelope ID

attachments

array

true

The information of the attachments.

 

fileKey

string

true

Attachment fileKey

Request Example

{
    "envelopeId":"flow1234567890",
    "attachments":[{
    "fileKey":"fileKey12345678901"
  }]
}

Responses

Parameter

Type

Description

code

int

Service Code

0 for success, non-0 for exception.

message

string

Service Message

data

object

Data Details

Response Example

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

 

 

Interface Description
Request Parameters
Request Example
Responses
Response Example