Uploader

File upload system with capabilities for uploading, validation, and importing Excel files.

Available Endpoints

Method Path Description
POST /api/uploader/files Upload file
POST /api/uploader/excel-import Import Excel file
POST /api/uploader/validate Validate file
POST /api/uploader/validate-image Validate image

Example Request

curl -X POST "https://example.com/api/uploader/files" \
  -H "Authorization: Bearer {token}" \
  -F "file=@document.pdf"

Success Response (200)

{
  "url": "https://example.com/uploads/document.pdf"
}

Errors

Code Description
401 Invalid token
422 File validation error
Type to search...