IntegrationsCloudflareActions
Get Cloudflare zone
Get the bound Cloudflare zone and account metadata. Requires Zone Read on the connected zone.
zone.get · Cloudflare · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 32; maxLength 32; pattern ^[0-9a-fA-F]{32}$ |
name | string | Yes | minLength 1; maxLength 253 |
account | object | Yes | additionalProperties false |
account.id | string | Yes | minLength 1; maxLength 64 |
account.name | string | No | maxLength 200 |
status | string | No | enum initializing | pending | active | moved |
type | string | No | enum full | partial | secondary | internal |
paused | boolean | No | — |
name_servers | array<string> | No | maxItems 20 |
name_servers[] | string | Yes | minLength 1; maxLength 253 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 32,
"maxLength": 32,
"pattern": "^[0-9a-fA-F]{32}$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 253
},
"account": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"name": {
"type": "string",
"maxLength": 200
}
},
"required": [
"id"
]
},
"status": {
"type": "string",
"enum": [
"initializing",
"pending",
"active",
"moved"
]
},
"type": {
"type": "string",
"enum": [
"full",
"partial",
"secondary",
"internal"
]
},
"paused": {
"type": "boolean"
},
"name_servers": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"maxLength": 253
},
"maxItems": 20
}
},
"required": [
"id",
"name",
"account"
]
}