Create an auth code for a Domains transfer-out process
POST/domains/ {domainId}/ actions/ auth-code/
v2
POST
domain-create-domain-auth-code
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X POST \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/domains/f0f86186-0a5a-45b2-aa33-502777496347/actions/auth-code
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.domain.createDomainAuthCode({
"domainId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 201);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\CreateDomainAuthCode\CreateDomainAuthCodeRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new CreateDomainAuthCodeRequest(
domainId: "f0f86186-0a5a-45b2-aa33-502777496347"
));
$response = $client->domain()->createDomainAuthCode($request);
var_dump($response->getBody();