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