Skip to content

Remove the domain's acme-dns account

DELETE
/domains/{domain}/ssl/acme-dns
curl --request DELETE \
--url https://api.nsin.ir/domains/example.com/ssl/acme-dns \
--header 'Authorization: Bearer <token>'

Issuance falls back to whatever this domain’s DNS mode would otherwise use. If _acme-challenge still points at acme-dns, that fallback will not be able to prove control — remove the CNAME too, or replace it with the delegation record shown on the SSL page. Requires ssl.manage.

domain
required
string

The domain name (for example example.com) — not a numeric id.

Example
example.com

Removed.

Media type application/json
object
message
string
Example generated
{
"message": "example"
}

Missing, malformed, revoked or expired API key — or the owning account is inactive.

Media type application/json

The single error shape used by every endpoint.

object
error
required

Human-readable description of what went wrong.

string
Examples
Example invalidKey
{
"error": "invalid API key"
}

The key is read-only, your role on the domain lacks the required permission, or the domain’s plan does not include the feature.

Media type application/json

The single error shape used by every endpoint.

object
error
required

Human-readable description of what went wrong.

string
Example
{
"error": "read-only API key"
}

No such domain, or it is not visible to this account. Domains you cannot access are reported as not found rather than forbidden.

Media type application/json

The single error shape used by every endpoint.

object
error
required

Human-readable description of what went wrong.

string
Example
{
"error": "read-only API key"
}

The key exceeded its request budget (300 requests per minute by default).

Media type application/json

The single error shape used by every endpoint.

object
error
required

Human-readable description of what went wrong.

string
Examples
Example limited
{
"error": "rate limit exceeded"
}