domain_contact_verification
Creates, updates, deletes, gets or lists a domain_contact_verification resource.
Overview
| Name | domain_contact_verification |
| Type | Resource |
| Id | vercel.domains_registrar.domain_contact_verification |
Fields
The following fields are returned by SELECT queries:
- get
The registrant contact has been verified.
| Name | Datatype | Description |
|---|---|---|
email | string | |
verified | boolean | (true) |
verify_by | string | a string to be decoded into a Date (wire: verifyBy) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | domain | team_id | 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. |
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.
| Name | Datatype | Description |
|---|---|---|
domain | string | |
team_id | string | (wire: teamId) |
SELECT examples
- get
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 }}'
;