> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Dedicated Page Domain

> Remove a page-specific hostname while keeping fallback URLs available

Remove only this page's dedicated hostname. The shared workspace domain and
Sequenzy URL remain available for published pages. Requires `landing_pages:delete`
and access to the page's company.

<ParamField path="landingPageId" type="string" required>
  Landing page ID. No request body is needed.
</ParamField>

```bash theme={null}
curl -X DELETE "https://api.sequenzy.com/api/v1/landing-pages/lp_abc123/domain" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

The response returns the same `domain` shape as [Get Dedicated Page Domain](/api-reference/landing-pages/get-page-domain),
with `domain: null`, `domainStatus: "not_started"` and the workspace fallback
fields. Removing a page's already absent domain also succeeds.

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "domain": {
      "domain": null,
      "domainScope": "page",
      "landingPageId": "lp_abc123",
      "domainStatus": "not_started",
      "fallbackDomain": "pages.example.com",
      "fallbackDomainStatus": "verified",
      "verifiedAt": null,
      "dnsRecordAddedAt": null,
      "sslStatus": null,
      "error": null,
      "verificationRecords": [],
      "lastCheckedAt": null,
      "cnameTarget": "pages.sequenzydns.com",
      "dnsRecordType": "CNAME",
      "dnsRecordName": null,
      "dnsRecordValue": "pages.sequenzydns.com"
    },
    "message": "Page domain removed."
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Missing API key. Provide via x-api-key header or Authorization: Bearer <key>"
  }
  ```

  ```json 403 theme={null}
  { "error": "API key is missing required scope: landing_pages:delete" }
  ```

  ```json 404 theme={null}
  { "error": "Landing page not found" }
  ```

  ```json 500 theme={null}
  { "error": "Landing page domain setup is temporarily unavailable." }
  ```
</ResponseExample>
