I am trying to use api/v1/dnsrecord/create/ but I keep getting a 405. The JSON I'm sending in the POST is:
{'domain': <string containing the UUID of the domain where the DNS record is supposed to go>, 'type': 'TXT', 'ttl': '86400', 'priority': 0, 'content': 'SOA ns1.gandi.net. hostmaster.gandi.net. 1625020402 10800 3600 604800 10800'}
This is just one example; I have tried CNAME and A and SVR records with the same 405 result. What could be the reason for this?
Jeffrey