List Files from Folders

You can easily see all files from multiple Folders.

After sending your Files through Files API you can paginate through them using our API.

List Files

GET https://backend.az.misterturing.com/v4.0/paginated-search-file/

Request Param

Name
Type
Description

folder_ids*

List[string]

Folder External IDs, you can separate them using comma

page*

int

Page that you are paginating

items_per_page*

int

How many records per page

reading_status

string

Filter files from this folder by status.

AP - waiting to process EL - reading ER - error DN - done

{
    "message": "Busca concluída com sucesso",
    "current_page": 1,
    "items_per_page": 8,
    "total_pages": 1,
    "total_items": 1,
    "files": [
        {
            "file_id": "362fed7b-3b02-4984-adc4-8c968d80e889",
            "name": "file_name",
            "created_by": "[email protected]",
            "extension": "pdf",
            "size_bytes": 3748024,
            "read_percentage": 100.0,
            "created_at": "2024-11-26T22:40:00.992310",
            "link": "https://alan-files-read-5a00c334ae2a.s3.amazonaws.com/path/file_name.pdf",
            "reading_status": "DN"
        }
    ]
}

Last updated