Change your password
PUT/users/ self/ credentials/ password/
v2
PUT
user-change-password
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '{"multiFactorCode":"123456","newPassword":"string","oldPassword":"string"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/users/self/credentials/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.user.changePassword({
"data": {
"multiFactorCode": "123456",
"newPassword": "string",
"oldPassword": "string"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\User\ChangePassword\ChangePasswordRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\ChangePassword\ChangePasswordRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// ChangePasswordRequestBody to learn how to construct a valid instance
$body = new ChangePasswordRequestBody(/* TODO: ... */);
$request = (new ChangePasswordRequest(
body: $body
));
$response = $client->user()->changePassword($request);
var_dump($response->getBody();