Skip to main content
PUT
/
api
/
v1
/
landing-pages
/
domain
Update Landing Page Domain Settings
curl --request PUT \
  --url https://api.sequenzy.com/api/v1/landing-pages/domain \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "domain": "<string>",
  "verify": true
}
'
{
  "success": true,
  "domain": {
    "domain": "pages.example.com",
    "domainStatus": "verified",
    "verifiedAt": "2026-05-01T10:35:00Z",
    "dnsRecordAddedAt": "2026-05-01T10:35:00Z",
    "sslStatus": "issued",
    "error": null,
    "verificationRecords": [],
    "lastCheckedAt": "2026-05-01T10:35:00Z",
    "cnameTarget": "pages.sequenzydns.com"
  }
}
Update the custom domain for landing pages, verify the current domain, or do both in one request.

Request

domain
string
Replacement custom landing page domain.
verify
boolean
Set to true to check the current domain’s DNS and SSL status.
curl -X PUT "https://api.sequenzy.com/api/v1/landing-pages/domain" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"domain": "pages.example.com", "verify": true}'

Responses

{
  "success": true,
  "domain": {
    "domain": "pages.example.com",
    "domainStatus": "verified",
    "verifiedAt": "2026-05-01T10:35:00Z",
    "dnsRecordAddedAt": "2026-05-01T10:35:00Z",
    "sslStatus": "issued",
    "error": null,
    "verificationRecords": [],
    "lastCheckedAt": "2026-05-01T10:35:00Z",
    "cnameTarget": "pages.sequenzydns.com"
  }
}