Frontu API Sandbox
ClientApi/File
Get File list
1min
GET
https://dev1.frontu.com//client/api/v2/files
This endopint allows to get file list
Authentication
Authorization
apiKey
Query Parameters
page
string
version
string
Responses
200
Returned when successful
object
next_page
integer
items
object[]
Curl
JS
Ruby
Python
1curl --location 'https://dev1.frontu.com//client/api/v2/files' \
2--header 'Accept: application/json' \
3--header 'Content-Type: application/json'
Responses
200
1// Returned when successful
2{
3 "next_page": 0,
4 "items": [
5 {
6 "version": 0,
7 "originalName": "",
8 "path": "",
9 "checksum": "",
10 "contentLength": "",
11 "task": "",
12 "taskRequest": "",
13 "guid": "",
14 "created": "",
15 "updated": ""
16 }
17 ]
18}
Updated 18 Apr 2025
Did this page help you?