Update the password of a delivery box
PATCH/delivery-boxes/ {deliveryBoxId}/ password/
v2
PATCH
mail-update-delivery-box-password
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PATCH \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/delivery-boxes/f0f86186-0a5a-45b2-aa33-502777496347/password
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.updateDeliveryBoxPassword({
"deliveryBoxId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\Mail\UpdateDeliveryBoxPassword\UpdateDeliveryBoxPasswordRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Mail\UpdateDeliveryBoxPassword\UpdateDeliveryBoxPasswordRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// UpdateDeliveryBoxPasswordRequestBody to learn how to construct a valid instance
$body = new UpdateDeliveryBoxPasswordRequestBody(/* TODO: ... */);
$request = (new UpdateDeliveryBoxPasswordRequest(
deliveryBoxId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->mail()->updateDeliveryBoxPassword($request);
var_dump($response->getBody();