contact_info_schema
Creates, updates, deletes, gets or lists a contact_info_schema resource.
Overview
| Name | contact_info_schema |
| Type | Resource |
| Id | vercel.domains_registrar.contact_info_schema |
Fields
The following fields are returned by SELECT queries:
- get
Wrapper for non-JSON response bodies (jsonl, ndjson, streamed json, octet-stream): one row carrying the raw body text.
| Name | Datatype | Description |
|---|---|---|
contents | string | Raw response body. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | domain | team_id | Some 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.
| Name | Datatype | Description |
|---|---|---|
domain | string | |
team_id | string | (wire: teamId) |
SELECT examples
- get
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 }}'
;