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. DomainHolder
  • 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. DomainHolder

Delete a DomainHolder

DELETE
https://www.mijnhostingpartner.nl/v2/DomainHolder/{id}
Delete a DomainHolder from the system.
Request Body:
None.
Response:
HTTP 204 – successfully deleted.
HTTP 404 – holder not found.
Use Case:
Remove outdated or unused contact records.
Notes:
Deleting a holder that has associated domains may be restricted.

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

🟢200OK
DomainHolder deleted successfully
This response does not have a body.
🟠400Bad Request
🟠422Unprocessable Entity
🟠404Not Found
🟠401Unauthorized
🔴500Internal Server Error
🟠405Method Not Allowed
🟠403Forbidden
🟠402Payment Required
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://www.mijnhostingpartner.nl/v2/DomainHolder/' \
--header 'Authorization: Bearer <token>'
Response Response Example
400 - Bad Request
{
    "status": "error",
    "message": "Missing client_id or client_secret"
}
Modified at 2026-03-30 11:31:03
Previous
Get a DomainHolder by ID or email address
Next
Update an existing DomainHolder
Built with