Skip to main content
PATCH
/
cloudflare
/
zones
/
{zoneId}
/
dns
/
{recordId}
/
record
Update DNS record
curl --request PATCH \
  --url https://nimbussuite.com/api/v1/cloudflare/zones/{zoneId}/dns/{recordId}/record \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "keyId": "<string>",
  "type": "<string>",
  "name": "<string>",
  "content": "<string>",
  "ttl": 123,
  "proxied": true,
  "comment": "<string>",
  "tags": [
    "<string>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

zoneId
string
required
recordId
string
required

Body

application/json
keyId
string
required
type
string
required
name
string
required
content
string
required
ttl
number
proxied
boolean
comment
string
tags
string[]

Response

DNS record updated

The response is of type object.