I have the following logic in a WorkflowProcess:String addFileUrl = _apiUrl + "File/AddFileToItem";
HttpPost post = new HttpPost(addFileUrl);
post.setHeader(HttpHeaders.AUTHORIZATION, "Bearer " + _accessToken);
// Build the multi-part request entity
MultipartEntityBuilder bu...