Back to Collection Items
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"
IncludeFile "CkHttpRequest.pb"
Procedure ChilkatExample()
; This example assumes the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.
http.i = CkHttp::ckCreate()
If http.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
success.i
req.i = CkHttpRequest::ckCreate()
If req.i = 0
Debug "Failed to create object."
ProcedureReturn
EndIf
CkHttpRequest::setCkHttpVerb(req, "POST")
CkHttpRequest::setCkPath(req, "/contracts/:id/attachments")
CkHttpRequest::setCkContentType(req, "multipart/form-data")
success = CkHttpRequest::ckAddFileForUpload2(req,"attachment[file]"," path to file","application/octet-stream")
CkHttpRequest::ckAddHeader(req,"Authorization","Bearer <access_token>")
CkHttpRequest::ckAddHeader(req,"Accept","application/xml")
CkHttpRequest::ckAddHeader(req,"Expect","100-continue")
resp.i = CkHttp::ckSynchronousRequest(http,"domain.com",443,1,req)
If CkHttp::ckLastMethodSuccess(http) = 0
Debug CkHttp::ckLastErrorText(http)
CkHttp::ckDispose(http)
CkHttpRequest::ckDispose(req)
ProcedureReturn
EndIf
Debug Str(CkHttpResponse::ckStatusCode(resp))
Debug CkHttpResponse::ckBodyStr(resp)
CkHttpResponse::ckDispose(resp)
CkHttp::ckDispose(http)
CkHttpRequest::ckDispose(req)
ProcedureReturn
EndProcedure
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Accept: application/xml"
-H "Content-Type: multipart/form-data"
--form 'attachment[file]=@"/path/to/file"'
https://domain.com/contracts/:id/attachments
Postman Collection Item JSON
{
"name": "Contracts - Add New Attachment",
"request": {
"method": "POST",
"header": [
{
"key": "Accept",
"value": "application/xml",
"type": "text"
},
{
"key": "Content-Type",
"name": "Content-Type",
"value": "multipart/form-data",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "attachment[file]",
"type": "file",
"src": "/Users/siyadmohammed/Documents/Learning/Sample Files/ContractAttachment.pdf"
},
{
"key": "file",
"type": "file",
"src": [
],
"disabled": true
}
]
},
"url": {
"raw": "{{URL}}/contracts/:id/attachments",
"host": [
"{{URL}}"
],
"path": [
"contracts",
":id",
"attachments"
],
"query": [
{
"key": "",
"value": "",
"disabled": true
}
],
"variable": [
{
"key": "id",
"value": "372"
}
]
}
},
"response": [
]
}