I'm trying to delete a DNS record with Google Cloud DNS REST API. I am able to create one with the following request:
POST https://www.googleapis.com/dns/v1/projects/[PROJECT]/managedZones/[ZONE]/changes
{
"additions": [
{
"name": "[RECORD]",
"type": "A",
"ttl": 300,
"rrdatas": [
"[IPADRESS]"
]
}
]
}
However I cannot figure out how to delete my recently created record using the API. I also can't find a solution in the documentation.