Skip to main content
PUT
/
api
/
domains
/
{id}
Update domain
curl --request PUT \
  --url https://api.ipulse.one/api/domains/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "check_interval": 43230,
  "timeout": 152,
  "expected_status_codes": [
    123
  ],
  "follow_redirects": true,
  "ssl_check": {
    "enabled": true,
    "warn_days_before_expiry": 123
  },
  "dns_check": {
    "enabled": true,
    "record_types": [
      "<string>"
    ]
  },
  "tags": [
    "<string>"
  ]
}
'

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

Body

application/json
name
string
check_interval
integer
Required range: 60 <= x <= 86400
timeout
integer
Required range: 5 <= x <= 300
expected_status_codes
integer[]
follow_redirects
boolean
ssl_check
object
dns_check
object
tags
string[]

Response

200

Domain updated successfully