v26

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-1247150179.9 KB
domain-contacts

Update domain contacts

Update the contacts associated with the specified domain. You can update any combination of owner, admin, tech, and billing contacts. Use $preview=true to validate without applying changes.

patch/domains/{name}/dns/contacts

Path parameters

namestring required

Query parameters

$previewboolean required

Request body

Example request

{
  "owner": {
    "id": "ct-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "phone": {
      "dialingPrefix": "+1"
    }
  },
  "admin": {
    "id": "ct-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "phone": {
      "dialingPrefix": "+1"
    }
  },
  "tech": {
    "id": "ct-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "phone": {
      "dialingPrefix": "+1"
    }
  },
  "billing": {
    "id": "ct-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "phone": {
      "dialingPrefix": "+1"
    }
  }
}

Response

Contact update operation created

@type'unstoppabledomains.com/partner.v3.DomainContactOperationResult' required

Example response

{
  "operation": {
    "id": "op-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "dependencies": [
      {
        "id": "plop_abc12345-1234-1234-1234-abc123456789",
        "parameters": {
          "owner": {
            "id": "con_abc12345-1234-1234-1234-abc123456789"
          },
          "contacts": {
            "admin": {
              "id": "con_abc12345-1234-1234-1234-abc123456789"
            },
            "billing": {
              "id": "con_abc12345-1234-1234-1234-abc123456789"
            },
            "tech": {
              "id": "con_abc12345-1234-1234-1234-abc123456789"
            }
          },
          "period": 1
        }
      }
    ]
  }
}