Skip to main content

contact_info_schema

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

Overview

Namecontact_info_schema
TypeResource
Idvercel.domains_registrar.contact_info_schema

Fields

The following fields are returned by SELECT queries:

Wrapper for non-JSON response bodies (jsonl, ndjson, streamed json, octet-stream): one row carrying the raw body text.

NameDatatypeDescription
contentsstringRaw response body.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectdomainteam_idSome TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.

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

Some TLDs require additional contact information. Use this endpoint to get the schema for the tld-specific contact information for a domain.

SELECT
contents
FROM vercel.domains_registrar.contact_info_schema
WHERE domain = '{{ domain }}' -- required
AND team_id = '{{ team_id }}'
;