Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Update or verify landing page domain settings
cURL
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" } }
true
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}'