DNS

List all DNS zones

get
Authorizations
Path parameters
org_uuidstringRequired
Query parameters
skipintegerOptionalDefault: 0
limitintegerOptionalDefault: 100
Responses
200
Successful Response
application/json
Responsestring
get
GET /api/v1/automation/{org_uuid}/dns/zones HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
text

Create a new DNS zone

post
Authorizations
Path parameters
org_uuidstringRequired
Body
namestringRequired
Responses
200
Successful Response
application/json
post
POST /api/v1/automation/{org_uuid}/dns/zones HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "name": "text"
}
{
  "status": true,
  "data": {
    "id": "text",
    "name": "text",
    "organization_uuid": "text",
    "active": true,
    "create_date": "2025-07-25T10:18:32.941Z",
    "update_date": "2025-07-25T10:18:32.941Z"
  }
}

Delete a DNS zone

delete
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Responses
200
Successful Response
application/json
Responsestring
delete
DELETE /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
text

Get all records for a specific zone

get
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Responses
200
Successful Response
application/json
Responsestring
get
GET /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid}/records HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
text

Create a new DNS record

post
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Bodyobject[]
typestringRequired
domainstringRequired
ttlintegerRequired
proxybooleanOptional
Responses
200
Successful Response
application/json
Responsestring
post
POST /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid}/records HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 86

[
  {
    "type": "text",
    "domain": "text",
    "answers": [
      {
        "answer": [
          "text"
        ]
      }
    ],
    "ttl": 1,
    "proxy": true
  }
]
text

Update an existing DNS record

put
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
record_uuidstringRequired
Body
typestringOptional
domainstringOptional
ttlintegerOptional
proxybooleanOptional
Responses
200
Successful Response
application/json
Responsestring
put
PUT /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid}/records/{record_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 84

{
  "type": "text",
  "domain": "text",
  "answers": [
    {
      "answer": [
        "text"
      ]
    }
  ],
  "ttl": 1,
  "proxy": true
}
text

Delete a specific answer value from a DNS record

delete
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
record_uuidstringRequired
Body
valuestringOptional

The answer value to be deleted from the record.

Responses
200
Successful Response
application/json
Responsestring
delete
DELETE /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid}/records/{record_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 16

{
  "value": "text"
}
text

Last updated

Was this helpful?