# API upload routes AyaNova has several API routes for uploading files. These routes are all `POST` routes: - `/api/v{version}/attachment` - `/api/v{version}/import` - `/api/v{version}/logo` Upload routes are not testable from the [API explorer console](api-console.md). Upload routes expect a form to be uploaded with file content disposition (multipart/form-data). AyaNova limits the size of files uploaded to each of the upload routes documented in the [API explorer console](api-console.md) comments with those routes. Here is a sample minimal HTML form that works with AyaNova file routes: ```html
```