Create a Project belonging to a Server
POST/servers/ {serverId}/ projects/
v2
POST
project-create-project
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"description":"My first Project!"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/servers/f0f86186-0a5a-45b2-aa33-502777496347/projects
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.project.createProject({
"serverId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"description": "My first Project!"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Project\CreateProject\CreateProjectRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Project\CreateProject\CreateProjectRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateProjectRequestBody to learn how to construct a valid instance
$body = new CreateProjectRequestBody(/* TODO: ... */);
$request = (new CreateProjectRequest(
serverId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->project()->createProject($request);
var_dump($response->getBody();