Get a HandleSchema
GET/domains/ handle-schema/ {domainName}/
v2
GET
domain-get-handle-fields-v2-deprecated
Get required handle fields of a registrar for your domain process (transfer/registration).
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/domains/handle-schema/string
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.getHandleFieldsV2Deprecated({
"domainName": "string"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\GetHandleFieldsV2Deprecated\GetHandleFieldsV2DeprecatedRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new GetHandleFieldsV2DeprecatedRequest(
domainName: "string"
));
$response = $client->domain()->getHandleFieldsV2Deprecated($request);
var_dump($response->getBody();