request.post(`${_host}${urlPrefix}/rest/update/upload`)
  .timeout(_timeout)
  // remove Content-Type since we're sending a file
  .set({ ..._headers, "Content-Type": undefined})
  .attach('file', file)