Skip to main content

authorities

Creates, updates, deletes, gets or lists an authorities resource.

Overview

Nameauthorities
TypeResource
Idcloudflare.radar.authorities

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
certificateAuthorityobject

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectca_slugformatRetrieves the requested CA information.
listselectlimit, offset, formatRetrieves a list of certificate authorities.

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
ca_slugstringCertificate authority SHA256 fingerprint.
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.

SELECT examples

Retrieves the requested CA information.

SELECT
certificateAuthority
FROM cloudflare.radar.authorities
WHERE ca_slug = '{{ ca_slug }}' -- required
AND format = '{{ format }}'
;