VBScript / DocuSign REST API / 7. Add an Attachment to Envelope
Back to Collection Items
Dim fso, outFile
Set fso = CreateObject("Scripting.FileSystemObject")
'Create a Unicode (utf-16) output text file.
Set outFile = fso.CreateTextFile("output.txt", True, True)
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = CreateObject("Chilkat.Http")
' Use this online tool to generate code from sample JSON: Generate Code to Create JSON
' The following JSON is sent in the request body.
' {
' "attachments": [
' {
' "attachmentId": "123",
' "data": "{{data}}",
' "name": "sample_document",
' "anchorIgnoreIfNotPresent": "false",
' "anchorUnits": "inches"
' }
' ]
' }
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = CreateObject("Chilkat.JsonObject")
success = json.UpdateString("attachments[0].attachmentId","123")
success = json.UpdateString("attachments[0].data","{{data}}")
success = json.UpdateString("attachments[0].name","sample_document")
success = json.UpdateString("attachments[0].anchorIgnoreIfNotPresent","false")
success = json.UpdateString("attachments[0].anchorUnits","inches")
http.SetRequestHeader "Content-Type","application/json"
' Adds the "Authorization: Bearer {{accessToken}}" header.
http.AuthToken = "{{accessToken}}"
' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.StringBuilder")
set sbRequestBody = CreateObject("Chilkat.StringBuilder")
success = json.EmitSb(sbRequestBody)
' resp is a Chilkat.HttpResponse
Set resp = http.PTextSb("PUT","https://domain.com/{{apiVersion}}/accounts/{{accountId}}/envelopes/{{envelopeId}}/attachments",sbRequestBody,"utf-8","application/json",0,0)
If (http.LastMethodSuccess = 0) Then
outFile.WriteLine(http.LastErrorText)
WScript.Quit
End If
outFile.WriteLine(resp.StatusCode)
outFile.WriteLine(resp.BodyStr)
outFile.Close
Curl Command
curl -X PUT
-H "Content-Type: application/json"
-H "Authorization: Bearer {{accessToken}}"
-d '{
"attachments": [{
"attachmentId": "123",
"data": {{document}},
"name": "sample_document",
"anchorIgnoreIfNotPresent": "false",
"anchorUnits": "inches"
}]
}'
https://domain.com/{{apiVersion}}/accounts/{{accountId}}/envelopes/{{envelopeId}}/attachments
Postman Collection Item JSON
{
"name": "7. Add an Attachment to Envelope",
"request": {
"method": "PUT",
"header": [
{
"key": "Content-Type",
"value": "application/json"
},
{
"key": "Authorization",
"value": "Bearer {{accessToken}}"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"attachments\": [{\n \"attachmentId\": \"123\",\n \"data\": {{document}},\n \"name\": \"sample_document\",\n \"anchorIgnoreIfNotPresent\": \"false\",\n \"anchorUnits\": \"inches\"\n }]\n}"
},
"url": {
"raw": "{{baseUrl}}/{{apiVersion}}/accounts/{{accountId}}/envelopes/{{envelopeId}}/attachments",
"host": [
"{{baseUrl}}"
],
"path": [
"{{apiVersion}}",
"accounts",
"{{accountId}}",
"envelopes",
"{{envelopeId}}",
"attachments"
]
},
"description": "In this example, we will make further changes to our existing envelope by adding an attachmen to it."
},
"response": [
]
}