> ## 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.

# Update Landing Page

> Update a landing page draft

Update a landing page name, slug, or builder content.

## Request

<ParamField path="landingPageId" type="string" required>
  Landing page ID.
</ParamField>

<ParamField body="name" type="string">
  Updated landing page name.
</ParamField>

<ParamField body="slug" type="string">
  Updated URL slug. It is normalized and made unique for the company.
</ParamField>

<ParamField body="content" type="object">
  Updated landing page builder JSON. Form redirect URLs are validated before
  saving.
</ParamField>

```bash theme={null}
curl -X PUT "https://api.sequenzy.com/api/v1/landing-pages/lp_abc123" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Updated Product Waitlist",
    "slug": "updated-product-waitlist"
  }'
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "landingPage": {
      "id": "lp_abc123",
      "name": "Updated Product Waitlist",
      "slug": "updated-product-waitlist",
      "status": "draft",
      "publicUrl": null
    }
  }
  ```

  ```json 400 theme={null}
  {
    "success": false,
    "error": "Provide name, slug, or content."
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```

  ```json 404 theme={null}
  {
    "success": false,
    "error": "Landing page not found"
  }
  ```
</ResponseExample>
