Introducing SOC Insights for BloxOne Threat Defense: Boost your SOC efficiency with AI-driven insights to eliminate manual work and accelerate investigation and response times. Read the blog announcement here.

API & Integration, DevOps,NetOps,SecOps

Reply

issues adding host record to zone of DNS View

[ Edited ]
New Member
Posts: 1
2045     1

Hello, 

 

I am trying to add a host record to a zone of a DNS view. The DNS view I am working with is named "MS DNS mydev.com". The authoritative zone within the view is named "mydev.com". I thought the PowerShell below would handle this, but I keep getting "400 Bad Request". I've read up on this a bit, I am positive it has something to do with me not understanding the difference between Network View and DNS View as they relate to the view parameter in the request below. The code snippit below returns "The remote server returned an error: (400) Bad Request.". 

 

Thanks for the help!

 

$cred = Get-Credential
$body = @{
    name = 'joey2.mydev.com'
    ipv4addrs = @(
        @{
            ipv4addr = '192.168.200.51'
        }
    )
    view = 'MS DNS mydev.com'
} | ConvertTo-Json


$uri = "https://ipam.blah.com/wapi/v2.7.3/record:host"
Invoke-WebRequest -Uri $uri -Method Post -Credential $cred -UseBasicParsing -Body $body -ContentType 'application/json'

 

Showing results for 
Search instead for 
Did you mean: 

Recommended for You