Update dns zone

Request Information
URL PATCH {{basepath}}/dnszone/:name
CategoryREPP-DnsZone

Description

Retrieves a zone.

Expects a DnszoneUpdateRequest object.

Returns a DnszoneUpdateResponse object.

Url variables
:name{{dnsdomain}}
JSON
{
    "add": [
        {
            "name": "home.{{dnsdomain}}",
            "type": "A",
            "ttl": "3600",
            "content": "127.0.0.1",
            "disabled": false
        }
    ],
    "rem": [
        {
            "name": "oldhome.{{dnsdomain}}",
            "type": "A",
            "ttl": "3600",
            "content": "127.0.0.1",
            "disabled": false
        }
    ]
}