Validate your second factor
POST/authenticate-mfa/
v2
POST
user-authenticate-mfa
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"email":"a.lovelace@example.com","multiFactorCode":"123456","password":"string"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/authenticate-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.authenticateMfa({
"data": {
"email": "a.lovelace@example.com",
"multiFactorCode": "123456",
"password": "string"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\User\AuthenticateMfa\AuthenticateMfaRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\AuthenticateMfa\AuthenticateMfaRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// AuthenticateMfaRequestBody to learn how to construct a valid instance
$body = new AuthenticateMfaRequestBody(/* TODO: ... */);
$request = (new AuthenticateMfaRequest(
body: $body
));
$response = $client->user()->authenticateMfa($request);
var_dump($response->getBody();