Skip to main content

domain_contact_verification

Creates, updates, deletes, gets or lists a domain_contact_verification resource.

Overview

Namedomain_contact_verification
TypeResource
Idvercel.domains_registrar.domain_contact_verification

Fields

The following fields are returned by SELECT queries:

The registrant contact has been verified.

NameDatatypeDescription
emailstring
verifiedboolean (true)
verify_bystringa string to be decoded into a Date (wire: verifyBy)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdomainteam_idGet the registrant contact verification status for a domain. Use this after purchasing a domain to determine whether the contact has been verified. Note that a bought_too_recently error will be returned if the domain was bought less than 30 minutes before the request.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
domainstring
team_idstring (wire: teamId)

SELECT examples

Get the registrant contact verification status for a domain. Use this after purchasing a domain to determine whether the contact has been verified. Note that a bought_too_recently error will be returned if the domain was bought less than 30 minutes before the request.

SELECT
email,
verified,
verify_by
FROM vercel.domains_registrar.domain_contact_verification
WHERE domain = '{{ domain }}' -- required
AND team_id = '{{ team_id }}'
;