Skip to main content
DELETE
/
api
/
v1
/
landing-pages
/
{landingPageId}
Delete Landing Page
curl --request DELETE \
  --url https://api.sequenzy.com/api/v1/landing-pages/{landingPageId} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "landingPageId": "lp_abc123",
  "message": "Landing page deleted."
}
Delete a landing page.

Request

landingPageId
string
required
Landing page ID.
curl -X DELETE "https://api.sequenzy.com/api/v1/landing-pages/lp_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "landingPageId": "lp_abc123",
  "message": "Landing page deleted."
}