I can see that there is an array for backup_ids in a hash for a droplet, but before there are any backups, is there a way to tell if backups are enabled via the API? An entry with a logical true/false would be nice.
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!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
There’s a
features
array near the end of thedroplet
object that you can check even before the first backup has been taken. If backups are enabled, it will be listed as an element in that array, the same asprivate_networking
,ipv6
, andvirtio
too (although Virtio is enabled by default for all new droplets, it was optional at one time). You can see a sample response body in the API call to retrieve a droplet by ID.