Skip to main content

radar_tlds

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

Overview

Nameradar_tlds
TypeResource
Idcloudflare.radar.radar_tlds

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
managerstringThe organization that manages the TLD.
tldstringThe actual TLD.
typestringThe type of TLD.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlimit, offset, tldManager, tldType, tld, formatRetrieves a list of TLDs.

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
formatstringFormat in which results will be returned.
limitintegerLimits the number of objects returned in the response.
offsetintegerSkips the specified number of objects before fetching the results.
tldstringFilters results by top-level domain. Specify a comma-separated list of TLDs.
tldManagerstringFilters results by TLD manager.
tldTypestringFilters results by TLD type.

SELECT examples

Retrieves a list of TLDs.

SELECT
manager,
tld,
type
FROM cloudflare.radar.radar_tlds
WHERE limit = '{{ limit }}'
AND offset = '{{ offset }}'
AND tldManager = '{{ tldManager }}'
AND tldType = '{{ tldType }}'
AND tld = '{{ tld }}'
AND format = '{{ format }}'
;