IntegrationsCloudflareActions
Delete Cloudflare DNS record
Delete a DNS record in the bound zone. Requires DNS Write. Engine-safe: provider 404 maps to already_absent.
dns_records.delete · Cloudflare · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
record_id | string | Yes | minLength 32; maxLength 32; pattern ^[0-9a-fA-F]{32}$ |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | minLength 32; maxLength 32; pattern ^[0-9a-fA-F]{32}$ |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"record_id": {
"type": "string",
"minLength": 32,
"maxLength": 32,
"pattern": "^[0-9a-fA-F]{32}$"
}
},
"required": [
"record_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 32,
"maxLength": 32,
"pattern": "^[0-9a-fA-F]{32}$"
}
},
"required": [
"id"
]
}