Files
List files
Lists files for the given user, paginated.
GET
/v1/filesAuthorization
APIKeyHeader api-key<token>
In: header
Query Parameters
page?Page
Page number, 1-based.
Range
1 <= valueDefault
1limit?Limit
Number of files per page (max 100).
Range
1 <= value <= 100Default
30Header Parameters
user-id*User-Id
ID of the end user the file belongs to.
Match
^[A-Za-z0-9._\-@:]+$Length
length <= 255Response Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/files" \ -H "user-id: string"{ "files": [ { "characters_count": 24680, "chunks_count": 12, "file_id": "9c3e00fe-1b42-413a-bf44-39ad9491ad86", "file_name": "test-file-reisekostenabrechnung.pdf" }, { "characters_count": 15320, "chunks_count": 8, "file_id": "cbfe557e-144e-43f3-823f-d72be00084a2", "file_name": "test-file-reisekostenabrechnung.pdf" } ], "limit": 30, "page": 1, "total": 4}