mijn.host API
  1. Contacts
mijn.host API
  • Getting started
    • Introduction
    • Base url
    • Authentication
    • Response codes
  • Domains
    • Domains
      • List domains
      • Get domain
      • Update domain
      • Cancel domain
      • Get DNS records
      • Update DNS records
      • Update single DNS record
      • Get auth code
      • Cancel domain deletion
    • Contacts
      • List profiles
        GET
      • Create profile
        POST
      • Update profile
        PUT
      • Get profile
        GET
    • Nameservers
      • List profiles
      • Create profile
      • Update profile
      • Get profile
    • DNS templates
      • List templates
      • Create template
      • Update template
      • Get template
    • Availability
      • Check domain availability
    • Order
      • Order domain
  1. Contacts

Update profile

PUT
/domains/contacts/{profile}
Update profile settings of an existing profile in your account. Optional fields left empty will not be updated.

Request

Authorization
Add parameter in header
API-key
Example:
API-key: ********************
Path Params

Header Params

Body Params application/json

Example
{
    "name": "string",
    "profile": {
        "vat": "string",
        "street": "string",
        "street_number": "string",
        "street_suffix": "string",
        "zipcode": "string",
        "city": "string",
        "state": "string",
        "country": "NL",
        "email": "string",
        "phone_country": "+31",
        "phone_area": "6",
        "phone_number": "string",
        "social_security_number": "string",
        "passport_number": "string",
        "company_registration_number": "string",
        "company_url": "string",
        "birth_date": "string",
        "defaults": {
            "owner": true,
            "admin": true,
            "tech": true,
            "billing": true,
            "reseller": true
        }
    }
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://mijn.host/api/v2/domains/contacts/10000' \
--header 'Accept;' \
--header 'User-Agent: my-application/1.0.0' \
--header 'API-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "profile": {
        "vat": "string",
        "street": "string",
        "street_number": "string",
        "street_suffix": "string",
        "zipcode": "string",
        "city": "string",
        "state": "string",
        "country": "NL",
        "email": "string",
        "phone_country": "+31",
        "phone_area": "6",
        "phone_number": "string",
        "social_security_number": "string",
        "passport_number": "string",
        "company_registration_number": "string",
        "company_url": "string",
        "birth_date": "string",
        "defaults": {
            "owner": true,
            "admin": true,
            "tech": true,
            "billing": true,
            "reseller": true
        }
    }
}'

Responses

🟢200Success
application/json
Body

Example
{
    "status": 200,
    "status_description": "Profile updated"
}
🟠400Invalid input
Modified at 2025-07-18 14:26:35
Previous
Create profile
Next
Get profile
Built with