Change the owner contact of a domain
PUT/domains/ {domainId}/ handles/ ownerc/
v2
PUT
deprecated-domain-change-ownerc-of-domain
This operation is deprecated. Use the PATCH /v2/domains/{domainId}/contacts/{contact} endpoint instead.
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
https://api.mittwald.de/v2/domains/f0f86186-0a5a-45b2-aa33-502777496347/handles/ownerc
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.deprecatedDomainChangeOwnercOfDomain({
"domainId": "f0f86186-0a5a-45b2-aa33-502777496347"
});
assertStatus(response, 200);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainChangeOwnercOfDomain\DeprecatedDomainChangeOwnercOfDomainRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainChangeOwnercOfDomain\DeprecatedDomainChangeOwnercOfDomainRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DeprecatedDomainChangeOwnercOfDomainRequestBody to learn how to construct a valid instance
$body = new DeprecatedDomainChangeOwnercOfDomainRequestBody(/* TODO: ... */);
$request = (new DeprecatedDomainChangeOwnercOfDomainRequest(
domainId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->domain()->deprecatedDomainChangeOwnercOfDomain($request);
var_dump($response->getBody();