List directories belonging to a Project
GET/projects/ {projectId}/ filesystem-directories/
v2
GET
project-file-system-get-directories
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/projects/string/filesystem-directories?directory=string&name=string&max_depth=123&type=string&executable=true&hidden=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.projectFileSystemGetDirectories({
"projectId": "string",
"queryParameters": {
"directory": "string",
"name": "string",
"max_depth": 123,
"type": [
"string"
],
"executable": true,
"hidden": true
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\ProjectFileSystem\ProjectFileSystemGetDirectories\ProjectFileSystemGetDirectoriesRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new ProjectFileSystemGetDirectoriesRequest(
projectId: "string"
))
->withDirectory("string")
->withName("string")
->withMaxDepth(123)
->withType(["string"])
->withExecutable(true)
->withHidden(true);
$response = $client->projectFileSystem()->projectFileSystemGetDirectories($request);
var_dump($response->getBody();