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" } ]
List files for the current team (ordered by name)
name
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
OK
The response is of type object[].
object[]
Was this page helpful?