Skip to main content

status

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

Overview

Namestatus
TypeResource
Idcloudflare.dns.status

Fields

The following fields are returned by SELECT queries:

Get Outgoing Zone Transfer Status response.

NameDatatypeDescription
errorsarray
messagesarray
resultstringThe zone transfer status of a primary zone. (example: Enabled)
successbooleanWhether the API call was successful. (true)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectzone_idGet primary zone transfer status.

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
zone_idstringThe Cloudflare zone ID.

SELECT examples

Get primary zone transfer status.

SELECT
errors,
messages,
result,
success
FROM cloudflare.dns.status
WHERE zone_id = '{{ zone_id }}' -- required
;