DNS
Authorizations
Path parameters
org_uuidstringRequired
Query parameters
skipintegerOptionalDefault:
0
limitintegerOptionalDefault:
100
Responses
200
Successful Response
application/json
Responsestring
422
Validation Error
application/json
get
GET /api/v1/automation/{org_uuid}/dns/zones HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
text
Authorizations
Path parameters
org_uuidstringRequired
Body
namestringRequired
Responses
200
Successful Response
application/json
422
Validation Error
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"
}
}
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Responses
200
Successful Response
application/json
Responsestring
422
Validation Error
application/json
delete
DELETE /api/v1/automation/{org_uuid}/dns/zones/{zone_uuid} HTTP/1.1
Host: cloud.medianova.com
Authorization: Bearer JWT
Accept: */*
text
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Responses
200
Successful Response
application/json
Responsestring
422
Validation Error
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: */*
text
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
Bodyobject[]
typestringRequired
domainstringRequired
ttlintegerRequired
proxybooleanOptional
Responses
200
Successful Response
application/json
Responsestring
422
Validation Error
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
}
]
text
Authorizations
Path parameters
org_uuidstringRequired
zone_uuidstringRequired
record_uuidstringRequired
Body
typestringOptional
domainstringOptional
ttlintegerOptional
proxybooleanOptional
Responses
200
Successful Response
application/json
Responsestring
422
Validation Error
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
}
text
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
422
Validation Error
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"
}
text
Last updated
Was this helpful?