File Upload
File upload operations for single and multiple files
Upload a single file to the server with validation and size limits
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
imagestring · binaryRequiredExample:
File to upload (JPEG, PNG, GIF, PDF)
file.jpgResponses
200
File uploaded successfully
application/json
400
File upload error
application/json
500
Internal server error
application/json
post
/uploadUpload multiple files to the server with validation and size limits
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
filesstring · binary[]RequiredExample:
Multiple files to upload (JPEG, PNG, GIF, PDF)
["file1.jpg","file2.png","document.pdf"]Responses
200
Files uploaded successfully
application/json
400
File upload error
application/json
500
Internal server error
application/json
post
/upload/multipleLast updated