GET
/
files
cURL
curl --request GET \
  --url https://app.loadforge.com/api/v2/files \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "team_id": 123,
    "name": "<string>",
    "filename": "<string>",
    "path": "<string>",
    "size": 123,
    "mime_type": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]
Retrieve all team files (CSV, JSON, TXT), ordered by name.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

OK

The response is of type object[].