File

Basic Functions for Uploading and Downloading Files

APIDescription
GET api/File/Download/{id}

Web Service for downloading the file with the corresponding id.

GET api/File/Details/{id}

Get the Metadata for the file with the corresponding id.

DELETE api/File/Remove/{id}

Delete the file from the server with the corresponding id.

PUT api/File/UpdateFile/{id}

Replace the File with the given GUID with the posted one through the Multipart Form Data technique Warning: If the MultiPartFormData has many files, each one will update the file in the order sent.

POST api/File/UploadFilesAllowIdentical

Upload (multiple) file(s) to the server using the Multipart Form Data technique

POST api/File/UploadFilesUpdateIdentical

Upload (multiple) file(s) to the server using the Multipart Form Data technique. If Identical files are found they will be updated.