Back to Collection Items
import com.chilkatsoft.*;
public class ChilkatExample {
static {
try {
System.loadLibrary("chilkat");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load.\n" + e);
System.exit(1);
}
}
public static void main(String argv[])
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http = new CkHttp();
boolean success;
CkHttpRequest req = new CkHttpRequest();
req.put_HttpVerb("POST");
req.put_Path("/crm/v2.1/Solutions/{{record_id}}/Attachments?file");
req.put_ContentType("multipart/form-data");
success = req.AddFileForUpload2("file"," path to file","application/octet-stream");
req.AddHeader("Authorization","Bearer <access_token>");
req.AddHeader("Expect","100-continue");
CkHttpResponse resp = http.SynchronousRequest("domain.com",443,true,req);
if (http.get_LastMethodSuccess() == false) {
System.out.println(http.lastErrorText());
return;
}
System.out.println(resp.get_StatusCode());
System.out.println(resp.bodyStr());
}
}
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
--form 'file=@"/path/to/file"'
https://domain.com/crm/v2.1/Solutions/{{record_id}}/Attachments?file
Postman Collection Item JSON
{
"name": "Solutions",
"request": {
"auth": {
"type": "bearer",
"bearer": [
{
"key": "token",
"value": "{{access-token}}",
"type": "string"
}
]
},
"method": "POST",
"header": [
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "file",
"type": "file",
"src": [
]
}
]
},
"url": {
"raw": "{{api-domain}}/crm/v2.1/Solutions/{{record_id}}/Attachments?file",
"host": [
"{{api-domain}}"
],
"path": [
"crm",
"v2.1",
"Solutions",
"{{record_id}}",
"Attachments"
],
"query": [
{
"key": "file",
"value": ""
}
]
},
"description": "To attach a file to a record. You must include the attachment in the request with content type as multipart/form data."
},
"response": [
]
}