GET
/
files
/
{id}
cURL
curl --request GET \
  --url https://app.loadforge.com/api/v2/files/{id} \
  --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"
}
Fetch a file by ID. Returns 404 if not found.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
integer
required

Response

200
application/json

OK

The response is of type object.