GET /resources/wrappers/files
Retrieve a list of all uploaded files in the system. This endpoint is primarily intended for debugging and administrative purposes.Authentication
No authentication required.Query Parameters
None. The endpoint returns up to 100 most recent files.Response
Array of uploaded file objects.
Unique identifier for the uploaded file.
Original filename as provided during upload.
File size in bytes.
MIME type of the file (e.g.,
text/csv, application/vnd.openxmlformats-officedocument.spreadsheetml.sheet).ISO 8601 formatted timestamp of when the file was uploaded.
Sample of the file content (first 5 rows) for preview purposes.
File validation status:
valid, invalid, or pending.List of validation error messages if the file is invalid.
Total number of files returned in the response.
Example Request
Example Response
Success
Error Responses
503 Service Unavailable
Database unavailable:Notes
- This endpoint returns a maximum of 100 files
- Files are returned in the order they appear in the database (not necessarily chronological)
- The
file_pathfield is excluded from responses for security reasons - Pagination and filtering features may be added in future versions