POST /overlay/api/v1/zones - Adaptive Applications - BlueCat Gateway - 22.7

BlueCat Overlay for Microsoft

Locale
English
Product name
BlueCat Gateway
Version
22.7
Add DNS zones to be synchronized with Address Manager.
Note: If you would like to add new DNS zones that have not yet been synchronized with Address Manager, you must first use the POST /overlay/api/v1/refresh-zones API method to retrieve a full list of DNS zones that can be synchronized.
Request
POST http://<Gateway_url>/overlay/api/v1/zones
Authorization: <token>
Content-Type: application/json

{
    "zones":[
    {
        "zone": "example.com",
        "selected": true
    }]
}
Parameters
  • zone - the name of the DNS zone to synchronize.
  • selected - a boolean value indicating whether the server has been configured to be managed by BlueCat Overlay for Microsoft.
Successful response
200 OK
Content-Type: application/json
[
    {
        "updated": true,
        "zone": "example.com"
    }
]