Skip to content
Myra Online Help Updated · 21 Aug 2026

Checking the nameserver delegation of the specified domains

Note

domains must contain at least one non-empty entry, otherwise the request is rejected with a 400 response.

Sends a POST request to the endpoint /ssl/requests/check-domains.

Description

The CheckDomains request checks whether the specified domains resolve their nameserver records to the authoritative nameservers of Myra – as a preliminary check before you request a managed SSL/TLS certificate for them.

Requirements

Values of the request: none Objects: CheckNsVO

Request

To check the domains, add the object CheckNsVO to the body of the request. The following attribute is required:

Attributes Description Values
domains An array of the fully qualified domain names (FQDN) to be checked. array of string

As a result, the system returns the object CheckNsVO, whose attribute domains contains the check result for each requested domain.

Example

Example request body:

{
  "domains": [
    "string"
  ]
}

Responses

The following responses are available:

STATUS CODE DESCRIPTION
200 The request has succeeded.
400 The request was unsuccessful. The request was invalid or information is missing.
401 The request has not succeeded because the user authentication was incorrect.