Move Content-Disposition and Content-Type to the file content.
fileContent.Headers.ContentType = new MediaTypeHeaderValue(contentType);
fileContent.Headers.ContentDisposition = new
ContentDispositionHeaderValue("form-data")
{
Name = "\"file\"",
FileName = $"\"{Path.GetFileName(fileFullPath)}\""
};