Call this endpoint after you have added the verification TXT record to your DNS provider. The service performs a live DNS lookup againstDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/plutoploy/dns-handling/llms.txt
Use this file to discover all available pages before exploring further.
_acme-challenge.<domain>. and checks that your domain’s verification token is present in the results. If the check passes, the domain’s status advances to verified and a verified_at timestamp is recorded — enabling the next step of requesting a TLS certificate via POST /domains/{id}/issue-certificate.
Method and Path
Path Parameters
The unique domain identifier returned by
POST /domains at registration time. This is a 32-character hex string derived from 16 random bytes.Request Body
No request body is required or accepted for this endpoint.What Happens Internally
When this endpoint is called the service performs the following steps in order:- Look up the domain record — retrieves the domain by
{id}; returns404if it does not exist. - Resolve TXT records — performs a live DNS lookup for TXT records at
_acme-challenge.<domain>.(e.g._acme-challenge.example.com.); returns424if the lookup fails. - Check status and token — confirms the domain is in
pendingstatus and scans the returned TXT records for an exact match with the domain’sverification_token; returns400if either check fails. - Advance status — sets
statustoverifiedand records the current UTC time asverified_at.
Response — 200 OK
The unique identifier for this domain record.
The fully-qualified domain name that was verified.
Always
verified in a successful response.RFC3339 timestamp recording the exact moment verification succeeded, e.g.
"2024-06-01T10:15:32Z". Always present in a successful verify response.RFC3339 timestamp recording when the domain was first registered.
Example
Request
Response
Error Cases
| Status | Cause |
|---|---|
404 Not Found | No domain record exists for the supplied {id}. |
400 Bad Request | The domain is not in pending status, or the DNS lookup succeeded but the verification token was not found among the returned TXT records. |
424 Failed Dependency | The DNS lookup itself failed — for example, the resolver could not reach the authoritative nameservers or returned a non-NXDOMAIN error. |