Is there any possible way to retrieve the DNSSEC Information via the API?
Otherwise this NEEDS TO be added as a feature. Many registrars support adding DS records via an API. I would like to do this programmatically, but since Cloudflare does not have a verified API method to do this, I am out of luck, as are other users.
Got it working via /zones/:zoneidentifier/dnssec. If you send a GET request you will get the current status and the DS settings/keys. If the status is disabled you can enable it by sending a PATCH request with the data: ‘status’ => true
The DS settings/keys where still empty after the PATCH but the status was now pending. I did another GET and then the DS settings/keys where available!