domains

PUT /v1/domains/{domainId}/contacts

Change the registrant contact (drives the registrar first).

所有 domains 端点

所有开发者文档

身份验证

请将 API 密钥作为 bearer 令牌发送。此端点在规范中未指明具体的权限,因此请为您的密钥赋予所需的最小权限,并通过检查响应来确认,而不是盲目假设。

此端点不需要组织 ID。您的密钥已用于识别其所属的组织,且响应范围也仅限于该组织。

免费试用

将尖括号中的内容替换为您自己的值,并将键占位符替换为您仪表板中的一个键。

curl -X PUT https://api.zinndigital.com/v1/domains/{domainId}/contacts \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "first": <string>, "last": <string>, "email": <string>, "phone": <string>, "street": <string[]>, "city": <string>, "postcode": <string>, "country": <string> }'

已登录?您仪表板中的 API 控制台会自动填入您真实的组织 ID 和您自己的密钥,并针对实时 API 运行请求,以便您查看实际的响应。 在 API 控制台中打开此端点

详细信息

This is not a preference. The registrant address is the ICANN record of who owns the domain and is what the registry emails to verify the registration — an unverified or bouncing one gets the domain suspended, so a customer who moves house or changes email needs to be able to correct it. The registrar is driven first and our mirror is written only once it accepted. The reverse order would show a customer their new address over a registry that still holds the old one. Every field is required. ICANN treats a registrant change as one record, several registries re-verify the whole contact on any change, and the drivers replace the set rather than patching a field — so a partial body would merge into whatever our mirror happened to hold. 422 where the registrar cannot change contacts at all (the Cloudflare route), naming support rather than telling the customer to retry something that will never work. 503 where it could not, which is worth retrying.

参数

名称类型必填内容简介
domainId (path)UuidThe domain's id.

请求正文

名称类型必填内容简介
firststring
laststring
org_namestring
emailstring
phonestringE.164-ish. Validated permissively on purpose — the registry is the authority on what it accepts, and a client-side rule that refused a legitimate international number would be a…
streetstring[]
citystring
statestringMay be blank — most of the world has no state. The Cloudflare adapter substitutes the city where its API demands one.
postcodestring
countrystring

响应

名称类型必填内容简介
contactDomainContact | null
editablebooleanWhether this domain's registrar publishes a contact-update path. false on the Cloudflare route; the console renders the panel read-only rather than offering a control that…

此端点可能返回的错误

401 · 403 · 404 · 422 · 429 · 503