Landing Pages
Unpublish landing page
Returns a landing page to draft status and optionally updates name, slug, or content first.
post/landing-pages/{landingPageId}/unpublish
Path parameters
landingPageIdstring required
Landing page ID
Request body
Example request
{
"content": {
"version": 2,
"template": "waitlist",
"seo": {
"faviconUrl": "https://acme.com/favicon.png"
}
}
}Response
Landing page unpublished
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"
}
}