v93

latestOpenAPI 3.1.0raw.githubusercontent.com2026-08-01218121759.7 KB
Landing Pages

Duplicate landing page

Copies a landing page into a new draft with its own slug, views, and conversions. The original keeps its published URL and stats.

post/landing-pages/{landingPageId}/duplicate

Path parameters

landingPageIdstring required

Landing page ID to copy

Request body

namestring

Name for the copy. Defaults to the original name with a "(copy)" suffix.

slugstring

Slug for the copy. Normalized and made unique within the company.

Response

Landing page duplicated

successboolean
messagestring

Example response

{
  "success": true,
  "landingPage": {
    "id": "lp_abc123",
    "companyId": "comp_abc123",
    "name": "Product Waitlist",
    "slug": "product-waitlist",
    "status": "published",
    "content": {
      "version": 2,
      "template": "waitlist",
      "seo": {
        "faviconUrl": "https://acme.com/favicon.png"
      }
    },
    "viewCount": 1240,
    "conversionCount": 186,
    "url": "https://sequenzy.com/dashboard/company/comp_abc123/landing-pages/lp_abc123",
    "appPublicUrl": "https://sequenzy.com/lp/comp_abc123/product-waitlist",
    "publicUrl": "https://pages.example.com/product-waitlist"
  }
}