Create a delivery box
POST/projects/ {projectId}/ delivery-boxes/
v2
POST
mail-create-deliverybox
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"description":"string","password":"string"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/projects/string/delivery-boxes
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.mail.createDeliverybox({
"projectId": "string",
"data": {
"description": "string",
"password": "string"
}
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Mail\CreateDeliverybox\CreateDeliveryboxRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Mail\CreateDeliverybox\CreateDeliveryboxRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// CreateDeliveryboxRequestBody to learn how to construct a valid instance
$body = new CreateDeliveryboxRequestBody(/* TODO: ... */);
$request = (new CreateDeliveryboxRequest(
projectId: "string",
body: $body
));
$response = $client->mail()->createDeliverybox($request);
var_dump($response->getBody();