Creates a new DNS record
name* - DNS record name
ttl* - the time to live value
type* - the record type
ip* - host IP ( for A and AAAA records)
returns created DNS record
curl -i -X POST <api_url>/dns_zones/:dns_zone_id/records.json -d '{"dns_record":{"name":"TEST_NAME","ttl":"111","type":"A","ip":"127.1.1.1"}}' -u user:userpass -H 'Accept: application/json' -H 'Content-type: application/json'
{ "dns_record": { "id": 1561633, "ip": "127.1.1.1", "name": "TEST_NAME", "ttl": "111", "type": "A" } }
curl -i-X POST <api_url>/dns_zones/:dns_zone_id/records.xml -d "<dns_record><name>test</name><ttl>111</ttl><type>A</type><ip>127.1.1.1</ip></dns_record>" -u user:userpass -H 'Accept: application/xml' -H 'Content-type: application/xml'
<?xml version="1.0" encoding="UTF-8"?> <dns_record> <name>test23</name> <ttl>111</ttl> <id type="integer">2696</id> <type>A</type> <ip>127.1.1.1</ip> </dns_record>