tlds
Creates, updates, deletes, gets or lists a tlds resource.
Overview
| Name | tlds |
| Type | Resource |
| Id | cloudflare.radar.tlds |
Fields
The following fields are returned by SELECT queries:
- get
Successful response.
| Name | Datatype | Description |
|---|---|---|
tld | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | tld | format | Retrieves the requested TLD information. |
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 |
|---|---|---|
tld | string | Top-level domain. |
format | string | Format in which results will be returned. |
SELECT examples
- get
Retrieves the requested TLD information.
SELECT
tld
FROM cloudflare.radar.tlds
WHERE tld = '{{ tld }}' -- required
AND format = '{{ format }}'
;