Table of Contents

API : DNS Acme Delete

Introduction

This request can be used by the ACME client using the PowerDNS module to delete an ACME challenges in the DNS.

Request

URL https://api.telecomx.dk/dns/acme/api/v1/servers/default/zones/DOMAIN
Method PATCH
Access level MANAGER, RESELLER, RESELLER_ADMIN, ADMIN.
Params DOMAIN Domain to lookup zone data for

Body example

{
  "rrsets": [
    {
      "changetype": "DELETE",
      "name": "_acme_challenge.example.org.",
      "type": "TXT"
    }
  ]
}

Response

JSON object
success boolean True on success

Example

{
  "success": true
}

Errors

Error code Message Description
422 name name is invalid
422 type Type is invalid
404 not_found DNS not found
403 access_denied Insufficient access level
500 internal_error <Unspecified>