This is my bash code:
curl -X GET -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" "https://api.digitalocean.com/v2/domains/sercansayitoglu.com/records/98280234"
This what I recieve:
{"domain_record":{"id":98280234,"type":"A","name":"dddfffggg","data":"1.1.1.1","priority":null,"port":null,"ttl":3600,"weight":null,"flags":null,"tag":null}}
This is my bash code:
curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" "https://api.digitalocean.com/v2/domains/sercansayitoglu.com/records/98280234" -d '{"data":"8.8.8.8"}'
This what I recieve:
{"id":"not_found","message":"The resource you were accessing could not be found."}
I couldn’t find where am I doing wrong, can you help me?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi there @ssayitoglu,
According to the DigitalOcean API documentation here, in order to update a DNS record, you have to use a PUT request rather than POST.
The request would look like this:
curl -X PUT -H "Content-Type: application/json" -H "Authorization: Bearer $TOKEN" -d '{"name":"blog"}' "https://api.digitalocean.com/v2/domains/your_domain.com/records/3352896"
Hope that this helps. Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.