Skip to main content
PATCH
/
v1
/
domains
/
{id}
/
registration
/
contact
Update domain registrant contact
curl --request PATCH \
  --url https://api.bizzyco.ai/v1/domains/{id}/registration/contact \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "<string>",
  "firstName": "<string>",
  "lastName": "<string>",
  "organizationName": "<string>",
  "jobTitle": "<string>",
  "address1": "<string>",
  "address2": "<string>",
  "city": "<string>",
  "stateProvince": "<string>",
  "postalCode": "<string>",
  "country": "<string>",
  "email": "jsmith@example.com",
  "phone": "<string>"
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "domainId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "state": "<string>",
    "autoRenew": true,
    "whoisPrivacy": true,
    "transferLock": true,
    "periodYears": 123,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  },
  "meta": {
    "pagination": {
      "limit": 123,
      "offset": 123,
      "hasMore": true,
      "total": 123
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication via Bearer token

Path Parameters

id
string<uuid>
required

Domain UUID

Body

application/json
label
string
Required string length: 1 - 120
firstName
string
Required string length: 1 - 120
lastName
string
Required string length: 1 - 120
organizationName
string
Required string length: 1 - 160
jobTitle
string
Required string length: 1 - 160
address1
string
Required string length: 1 - 160
address2
string
Required string length: 1 - 160
city
string
Required string length: 1 - 120
stateProvince
string
Required string length: 1 - 120
postalCode
string
Required string length: 1 - 40
country
string
Required string length: 2
email
string<email>
phone
string
Required string length: 1 - 80

Response

Update domain registrant contact

data
object
required
meta
object
Last modified on June 15, 2026