2 GET /dns/zones/{domain}/export
Thomas Brinkmann edited this page 2 years ago

GET /dns/zones/{domain}/export

Inhalt


  • Parameter
  • Optionale Parameter
  • Beispiel Anfrage
  • Beispiel Antwort
  • Mögliche Fehlermeldungen

Parameter

URL Parameter Typ Beschreibung
- - -
Body Parameter Typ Beschreibung
- - -

Optionale Parameter

Query-String Parameter Typ Beschreibung
- - -

Beispiel Anfrage

PHP
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dsh.gg/api/v2/dns/zones/domain1.de/export',
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'X-TOKEN: test-token',
    'Content-Type: application/json'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
cURL
curl --location --request GET 'https://api.dsh.gg/api/v2/dns/zones/domain1.de/export' \
--header 'X-TOKEN: test-token' \
--header 'Content-Type: application/json'

Beispiel Antwort

{
    "status": "OK",
    "export": {
        "csv": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
        "json": {
            "domain": "domain1.de.",
            "rrsets": [
                {
                    "name": "test.domain1.de.",
                    "type": "A",
                    "content": "x.x.x.x"
                },
                {
                    "name": "test2.domain1.de.",
                    "type": "A",
                    "content": "y.y.y.y"
                }
            ]
        },
        "xml": "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
    }
}

Mögliche Fehlermeldungen

Status Code 403 - Permission denied

Status Code 404 - Domain {domain} not found in your list