Skip to content
This repository was archived by the owner on Nov 27, 2023. It is now read-only.

Latest commit

 

History

History
41 lines (28 loc) · 777 Bytes

File metadata and controls

41 lines (28 loc) · 777 Bytes

This method returns a list of files within the team. It can be filtered and sliced in various ways.

Arguments

{ARGS}

Response

{
    "ok": true,
    "files": [
        {...},
        {...},
        {...},
        ...
    ],
    "paging": {
        "count": 100,
        "total": 295,
        "page": 1,
        "pages": 3
    }
}

The response contains a list of file objects, followed by paging information. Files are always returned with the most recent first.

The paging information contains the count of files returned, the total number of files matching the filter (if any was supplied), the page of results returned in this response and the total number of pages available.

Errors

{ERRORS}

Warnings

{WARNINGS}