Get a HandleSchema
GET/domains/ handle-schema/ {domainName}/
v2
GET
deprecated-domain-get-handle-fields
This operation is deprecated. Use the GET /v2/domain-tlds/{tld}/contact-schemas endpoint instead.
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.deprecatedDomainGetHandleFields({
"domainName": "string"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainGetHandleFields\DeprecatedDomainGetHandleFieldsRequest;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
$request = (new DeprecatedDomainGetHandleFieldsRequest(
domainName: "string"
));
$response = $client->domain()->deprecatedDomainGetHandleFields($request);
var_dump($response->getBody();