Examples: ### Add a record ### Requires "type", "name", "content" - "ttl" is optional curl -X POST "https://api.servercow.de/dns/v1/domains/example.org" \ -H "X-Auth-Username: servercow_username" \ -H "X-Auth-Password: servercow_password" \ -H "Content-Type: application/json" \ --data '{"type":"TXT","name":"_acme-challenge.www","content":"acbdefghijklmnopqrstuvwxyz","ttl":20}' ### Get all records curl -X GET "https://api.servercow.de/dns/v1/domains/example.org" \ -H "X-Auth-Username: servercow_username" \ -H "X-Auth-Password: servercow_password" \ -H "Content-Type: application/json" ### Delete a record ### Requires "type" and "name", "content" is optional curl -X DELETE "https://api.servercow.de/dns/v1/domains/example.org" \ -H "X-Auth-Username: servercow_username" \ -H "X-Auth-Password: servercow_password" \ -H "Content-Type: application/json" --data '{"type":"TXT","name":"_acme-challenge.www"}'