Get a Project file's content
GET/projects/ {projectId}/ filesystem-file-content/
v2
GET
project-file-system-get-file-content
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/projects/f0f86186-0a5a-45b2-aa33-502777496347/filesystem-file-content?file=%2Fhome%2Fexample.log&inline=true
import { MittwaldAPIV2Client } from "@mittwald/api-client";
import { assertStatus } from "@mittwald/api-client-commons";
const client = MittwaldAPIClient.newWithToken(process.env.MITTWALD_API_TOKEN);
const response = await client.projectFileSystem.projectFileSystemGetFileContent({
"projectId": "f0f86186-0a5a-45b2-aa33-502777496347",
"queryParameters": {
"file": "/home/example.log",
"inline": true
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\ProjectFileSystem\ProjectFileSystemGetFileContent\ProjectFileSystemGetFileContentRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ProjectFileSystemGetFileContentRequest(
projectId: "f0f86186-0a5a-45b2-aa33-502777496347"
))
->withFile("/home/example.log")
->withInline(true);
$response = $client->projectFileSystem()->projectFileSystemGetFileContent($request);
var_dump($response->getBody();