Update contact information for a specific domain

Change or correct contact information associated with a domain, such as registrant name, address, and contact details. This is important to ensure the domain registration is accurate and up-to-date according to registration requirements.

Path Parameters

id integer · min: 1 required Example

Unique id identifier

Headers

Accept Example
Content-Type Example

Body

required
application/json
updateContactInfo object required

Responses

200
success boolean
timestamp string
requestId string
data object
500
error string
message string
code string
timestamp string
requestId string
504
error string
message string
code string
timestamp string
requestId string
POST https://cloud.hostup.se/api/domain-contacts/{id}
For AI assistants
cURL
curl -X POST "https://cloud.hostup.se/api/domain-contacts/20670" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "updateContactInfo": {
      "registrant": {
        "firstname": "string",
        "lastname": "string",
        "companyname": "string",
        "email": "string",
        "phonenumber": "string",
        "address1": "string",
        "city": "string",
        "state": "string",
        "postcode": "string",
        "country": "string",
        "orgno": "string"
      }
    }
  }'
Response
{
  "success": true,
  "timestamp": "string",
  "requestId": "string",
  "data": {
    "message": "string",
    "contacts": {
      "registrant": {
        "firstname": "string",
        "lastname": "string",
        "companyname": "string",
        "email": "string",
        "phonenumber": "string",
        "address1": "string",
        "city": "string",
        "state": "string",
        "postcode": "string",
        "country": "string",
        "orgno": "string"
      }
    },
    "success": true,
    "syncTriggered": true,
    "domainStatus": "string",
    "orderActivation": {
      "attempted": true,
      "result": {
        "success": true,
        "skipped": true,
        "status": "string",
        "details": {
          "success": true,
          "id": "string",
          "call": "string",
          "server_time": 0,
          "info": [
            "string"
          ]
        }
      },
      "error": "string",
      "orderId": "string",
      "invoiceId": "string",
      "invoiceStatus": "string"
    }
  }
}
Request Body
{
  "updateContactInfo": {
    "registrant": {
      "firstname": "string",
      "lastname": "string",
      "companyname": "string",
      "email": "string",
      "phonenumber": "string",
      "address1": "string",
      "city": "string",
      "state": "string",
      "postcode": "string",
      "country": "string",
      "orgno": "string"
    }
  }
}