...
Anchor |
---|
| envelopeDocumentsUpdateList |
---|
| envelopeDocumentsUpdateList |
---|
|
Add documents to existing envelope using multipart/form-data
The envelopeDocumentsUpdateList operation allows you to adds one or more documents to an existing envelope document using multipart/form-data.
Code Block |
---|
title | envelopeDocumentsUpdateList |
---|
|
<docusign.envelopeDocumentsUpdateList>
<accountId>{$url:accountId}</accountId>
<envelopeId>{$url:envelopeId}</envelopeId>
</docusign.envelopeDocumentsUpdateList> |
Properties
accountId
: The account ID. This information is returned in the login response.
envelopeId
: The ID of the envelope that contains the document.
...
Code Block |
---|
title | envelopeDocumentsUpdateList |
---|
|
--AAA
Content-Disposition: form-data
Content-Type: application/json
{
"documents": [
{
"documentId": "3",
"name": "sampleDoc.pdf",
"transformPdfFields": "truefalse"
}
]
}
--AAA
Content-Disposition: attachment; filename="sampleDoc.pdf"; documentId="3"
Content-Type: application/pdf
VGhlIEJTQiBudW1iZXIgaWRlbnRpZmllcyBhIGJyYW5jaCBvZiBhIGZpbmFuY2lhbCBpbnN0aXR1dGlvbiBpbiBBdXN0cmFsaWEu
--AAA-- |
...