Change the Project relation of a Domain
PUT/domains/ {domainId}/ projectId/ 
v2
PUT
deprecated-domain-change-project-of-domain
This operation is deprecated. Use the PATCH /v2/domains/{domainId}/project-id 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/string/projectId
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.deprecatedDomainChangeProjectOfDomain({
  "domainId": "string"
});
assertStatus(response, 204);
  
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainChangeProjectOfDomain\DeprecatedDomainChangeProjectOfDomainRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DeprecatedDomainChangeProjectOfDomain\DeprecatedDomainChangeProjectOfDomainRequestBody;
  
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DeprecatedDomainChangeProjectOfDomainRequestBody to learn how to construct a valid instance
$body = new DeprecatedDomainChangeProjectOfDomainRequestBody(/* TODO: ... */);
$request = (new DeprecatedDomainChangeProjectOfDomainRequest(
  domainId: "string",
  body: $body
));
$response = $client->domain()->deprecatedDomainChangeProjectOfDomain($request);
var_dump($response->getBody();