# Files Managing files in the e-shop. ## List of uploaded files - [GET /api/system/files](https://api.docs.shoptet.com/shoptet-api/openapi/files/getlistofuploadedfiles.md): Retrieves your uploaded files that can be copied in supported endpoints to entities within e-shop. ## Batch files upload - [POST /api/system/files](https://api.docs.shoptet.com/shoptet-api/openapi/files/uploadfiles.md): This endpoint has been only renamed from "File upload" after we created new synchronous endpoint one file upload. Url and structure is unchanged Performs file upload asynchronously. Please note that order of files matter (result of job respects the order of images in request). In case of specifying filename, keep in mind that extension is checked whether it respects file type. The result can be found in job detail in . The result is formed as normal API response: In the result's section, there are successfully uploaded images with their info and with field which is order of the image in the request (0-based indexing). In the result's section, there are errors which occurred during some images upload and with number in brackets in in , which is order of the image in the request (0-based indexing). See more about Files upload See how [Asynchronous requests](https://developers.shoptet.com/asynchronous-requests/) work on our developer's portal. Currently maximum of 50 files can be uploaded in one request. Current filesize limit per file is 2MB. ## File upload - [POST /api/system/file](https://api.docs.shoptet.com/shoptet-api/openapi/files/uploadfile.md): This is new endpoint - older asynchronous endpoint has been only renamed to "Batch files upload" in documentation, url and structure is unchanged Performs one file upload synchronously in same way as asynchronous files upload. In the result's section, there are successfully uploaded image with current unique name and upload datetime. See more about Files upload In case of image upload, response tag is "image", any other file types has response key "file" as here: IMAGE: JPG, PNG, GIF ANY OTHER FILE TYPE Current filesize limit is 2MB.