Create a backup schedule for a Project
POST/projects/ {projectId}/ backup-schedules/
v2
POST
backup-create-project-backup-schedule
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"description":"string","schedule":"5 4 * * *","ttl":"7d"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/projects/f0f86186-0a5a-45b2-aa33-502777496347/backup-schedules
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.backup.createProjectBackupSchedule({
"projectId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {
"description": "string",
"schedule": "5 4 * * *",
"ttl": "7d"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Backup\CreateProjectBackupSchedule\CreateProjectBackupScheduleRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Backup\CreateProjectBackupSchedule\CreateProjectBackupScheduleRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateProjectBackupScheduleRequestBody to learn how to construct a valid instance
$body = new CreateProjectBackupScheduleRequestBody(/* TODO: ... */);
$request = (new CreateProjectBackupScheduleRequest(
projectId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->backup()->createProjectBackupSchedule($request);
var_dump($response->getBody();