updates a-records for a specific zone
PUT/dns/ zones/ {zoneId}/ recordset/ acombined/ custom/
v2
PUT
dns-record-a-set-custom-deprecated
Request
Responses
Usage examples
- cURL
- JavaScript SDK
- PHP SDK
$ curl \
--fail \
--location \
-X PUT \
-d '{}' \
-H "Authorization: Bearer $MITTWALD_API_TOKEN" \
-H 'Content-Type: application/json' \
https://api.mittwald.de/v2/dns/zones/f0f86186-0a5a-45b2-aa33-502777496347/recordset/acombined/custom
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.dnsRecordAsetCustomDeprecated({
"zoneId": "f0f86186-0a5a-45b2-aa33-502777496347",
"data": {}
});
assertStatus(response, 204);
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DnsRecordASetCustomDeprecated\DnsRecordASetCustomDeprecatedRequest;
use \Mittwald\ApiClient\Generated\V2\Clients\Domain\DnsRecordASetCustomDeprecated\DnsRecordASetCustomDeprecatedRequestBody;
$client = MittwaldAPIClient::newWithToken(getenv('MITTWALD_API_TOKEN'));
// TODO: Please consult the properties and constructor signature of
// DnsRecordASetCustomDeprecatedRequestBody to learn how to construct a valid instance
$body = new DnsRecordASetCustomDeprecatedRequestBody(/* TODO: ... */);
$request = (new DnsRecordASetCustomDeprecatedRequest(
zoneId: "f0f86186-0a5a-45b2-aa33-502777496347",
body: $body
));
$response = $client->domain()->dnsRecordAsetCustomDeprecated($request);
var_dump($response->getBody();