Designer API
Control the Webflow Designer
page.setDraft()
Set the draft status of the page.
1page.setDraft(isDraft: boolean): Promise<null>
Promise<null>
null
A promise that resolves to null.
1// Get Current Page2const currentPage = await webflow.getCurrentPage() as Page34// Set page as draft5await currentPage.setDraft(true)6const isDraft = await currentPage.isDraft()78// Print status9console.log(isDraft)
Try this example