Channel Admin Controller
List Files in Folder
Path: /api/channels/{channelRef}/folders/{folderName}/files
Method: GET
Example Http Request
GET /api/channels/localhost/folders/public/files HTTP/1.1
Content-Type: application/json
X-WAL: 0x1371699df678b0d92025bc20fdb91fdef8ce9444
X-SIG: 0x1234567890
X-MES: Message to sign
Host: localhost:8080
Example Http Response
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 231
[{"name":"file1.vrm","size":1024,"lastModified":1762473713.389557856,"downloadUrl":"https://example.com/file1.vrm"},{"name":"file2.vrm","size":2048,"lastModified":1762473713.389590176,"downloadUrl":"https://example.com/file2.vrm"}]
Example Curl Request
$ curl 'http://localhost:8080/api/channels/localhost/folders/public/files' -i -X GET \
-H 'Content-Type: application/json' \
-H 'X-WAL: 0x1371699df678b0d92025bc20fdb91fdef8ce9444' \
-H 'X-SIG: 0x1234567890' \
-H 'X-MES: Message to sign'
Channel Admin Controller