Verify an added mail address
POST/signup/ email/ verify/
v2
POST
deprecated-user-verify-email
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-d '{"email":"ada.lovelace@example.com","token":"123456"}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/signup/email/verify
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.deprecatedUserVerifyEmail({
"data": {
"email": "ada.lovelace@example.com",
"token": "123456"
}
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\User\DeprecatedUserVerifyEmail\DeprecatedUserVerifyEmailRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\User\DeprecatedUserVerifyEmail\DeprecatedUserVerifyEmailRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DeprecatedUserVerifyEmailRequestBody to learn how to construct a valid instance
$body = new DeprecatedUserVerifyEmailRequestBody(/* TODO: ... */);
$request = (new DeprecatedUserVerifyEmailRequest(
body: $body
));
$response = $client->user()->deprecatedUserVerifyEmail($request);
var_dump($response->getBody();