List
Prod
https://api.everabyte.io/api
Prod
https://api.everabyte.io/api
GET
https://api.everabyte.io/api
/files/findAll/{bucketId}
GET
bucketId
(required): The ID of the bucket containing the files. Example: my-example-bucket-id
GET /files/findAll/my-example-bucket-id
my-example-bucket-id
.200 OK
: Successfully retrieved the list of files. The response body will typically contain a JSON array of file objects, each with details like file name, size, and other relevant metadata. Example:[
{
"name": "file1.txt",
"size": 1024,
"lastModified": "2024-10-27T10:00:00Z"
},
{
"name": "image.png",
"size": 2048,
"lastModified": "2024-10-27T11:00:00Z"
}
]
400 Bad Request
: Invalid request parameters (e.g., malformed bucketId
).404 Not Found
: The specified bucket does not exist.500 Internal Server Error
: Server error.