MijnPartnerGroep Domain API
Home
MijnPartnerGroep.nl
Ondersteunde Partners
Ondersteunde Partners
  • MijnHostingPartner.nl
  • MijnDomeinPartner.nl
  • MijnWordPressPartner.nl
  • WebHoster.nl
Home
MijnPartnerGroep.nl
Ondersteunde Partners
Ondersteunde Partners
  • MijnHostingPartner.nl
  • MijnDomeinPartner.nl
  • MijnWordPressPartner.nl
  • WebHoster.nl
  1. DNS
  • Home
  • Authentication
  • Getting started
  • Error handling
  • Authentication
    • Authenticate to the API
      POST
  • Whois
    • Check WHOIS for a single domain
      GET
    • Check WHOIS for multiple domains
      POST
  • Domain
    • Register a single domain
      POST
    • Register multiple domains
      POST
  • DomainHolder
    • Create a new DomainHolder
      PUT
    • Get a DomainHolder by ID or email address
      POST
    • Delete a DomainHolder
      DELETE
    • Update an existing DomainHolder
      PATCH
  • DNS
    • ListDomain
      GET
    • GetRecords
      GET
    • AddRecord
      PUT
    • UpdateRecord
      PATCH
    • DeleteRecord
      POST
  • Schemas
    • Schemas
      • DomainHolderSearch
      • Record
      • Domain
      • Zones
      • DomainHolder
      • BulkRegisterRequest
    • Response
      • AuthenticationSuccess
      • AuthorizationFailed
      • BadRequest
      • PaymentRequired
      • Unauthorized
      • NotFound
      • MethodNotAllowed
      • UnprocessableEntity
      • InternalServerError
  1. DNS

ListDomain

GET
https://www.mijnhostingpartner.nl/v2/DNS/ListDomain/{domain}
List all DNS records or subdomains for a domain.
Request Body:
None.
Response:
HTTP 200 – array of DNS records returned.
HTTP 404 – domain not found.
Use Case:
View existing DNS configuration for a domain.
Notes:
May include record type, TTL, and values.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200Success
application/json
Body

🟠401Unauthorized
🟠402Payment Required
🟠400Bad Request
🟠422Unprocessable entity
🟠404Not Found
🔴500Internal Server Error
🟠405Method Not Allowed
🟠403Forbidden
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://www.mijnhostingpartner.nl/v2/DNS/ListDomain/{{$internet.domainName}}' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
[
    {
        "Name": "string",
        "Type": "string"
    }
]
Modified at 2026-03-30 11:31:27
Previous
Update an existing DomainHolder
Next
GetRecords
Built with