DNS

List all DNS zones

get
Authorizations
Path parameters
org_uuidstringRequired
Query parameters
skipintegerOptionalDefault: 0
limitintegerOptionalDefault: 100
Responses
200

Successful Response

application/json
get
GET /api/v1/automation/{org_uuid}/dns/zones HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
{
  "status": true,
  "data": [
    {
      "id": "text",
      "name": "text",
      "organization_uuid": "text",
      "active": true,
      "create_date": "2025-08-15T14:06:23.489Z",
      "update_date": "text"
    }
  ],
  "operation_id": "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-08-15T14:06:23.489Z",
    "update_date": "2025-08-15T14:06:23.489Z"
  }
}

Delete a DNS zone

delete
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Responses
200

Successful Response

application/json
delete
DELETE /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
{
  "status": true,
  "message": "text",
  "operation_id": "text"
}

Get all records for a specific zone

get
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Responses
200

Successful Response

application/json
get
GET /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid}/records HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
{
  "status": true,
  "data": [
    {
      "id": "text",
      "domain": "text",
      "type": "text",
      "ttl": 1,
      "answers": [
        {
          "answer": [
            "text"
          ]
        }
      ],
      "proxy": true
    }
  ]
}

Create a new DNS record

post
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Bodyobject[]
typestringRequired
domainstringRequired
ttlintegerRequired
proxybooleanOptional
Responses
200

Successful Response

application/json
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
  }
]
{
  "status": true,
  "message": "text",
  "data": [
    {
      "id": "text",
      "domain": "text",
      "type": "text",
      "ttl": 1,
      "answers": [
        {
          "answer": [
            "text"
          ]
        }
      ],
      "proxy": true
    }
  ]
}

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
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
}
{
  "status": true,
  "message": "text",
  "data": {
    "id": "text",
    "domain": "text",
    "type": "text",
    "ttl": 1,
    "answers": [
      {
        "answer": [
          "text"
        ]
      }
    ],
    "proxy": true
  }
}

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
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"
}
{
  "status": true,
  "message": "text",
  "operation_id": "text"
}

Last updated

Was this helpful?