> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

## Resource: Sample Flows

## Article: Sample Flows

## Article Link: https://dev.wix.com/docs/api-reference/account-level/enterprise/site-management/site-publish-state-v1/sample-flows.md

## Article Content:

# Site Publish State API: Sample Flows

This article presents a possible use case and corresponding sample flow that you can support. It provides a useful starting point as you plan your implementation.

## Take a site offline while its content is under review

An enterprise that runs many sites for its representatives must remove a site from the internet as soon as its content fails a compliance review, and put it back online once the content is approved. The site keeps its content, settings, and domain throughout.

To take a site offline and restore it after the review:

1. Call [Query Sites](https://dev.wix.com/docs/rest/account-level/sites/sites/query-sites.md) to find the site and retrieve its ID.
1. Call [Unpublish Site](https://dev.wix.com/docs/api-reference/account-level/enterprise/site-management/site-publish-state-v1/unpublish-site.md) with `metaSiteId` set to the ID from step 1. The response returns `published` as `false`, and visitors can no longer reach the site.
1. Correct the site's content in the editor and complete the review.
1. Call [Publish Site](https://dev.wix.com/docs/rest/account-level/sites/site-actions/publish-site.md) with the same `metaSiteId` to make the site live again.