Files
List user files
Retrieves a paginated list of files belonging to the authenticated user.
get/v1/files
Query parameters
takenumber
The number of elements to retrieve
fromstring
The id of the file from which to start the search
Response
Successfully retrieved the list of files.
Example response
{
"data": [
{
"id": "file_euyrvozb9302uwhq",
"name": "Example Image",
"type": "image/png",
"properties": {
"size": 1024,
"width": 800,
"height": 600
},
"task_id": null,
"created_at": "2021-05-01T12:00:00Z"
}
],
"links": {
"previous": "https://api.scan-documents.com/files?from=file_euyrvozb9302uwhq&take=1",
"next": "https://api.scan-documents.com/files?from=file_euyrvozb9302uwhq&take=1"
}
}