> ## Documentation Index
> Fetch the complete documentation index at: https://developer.surefeedback.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Approve page

> Mark a specific page as approved.

Marks a page as approved. Requires `PROJECT_ADMIN` or `PROJECT_CLIENT` role on the site.

## Path parameters

<ParamField path="siteId" type="string" required>
  UUID or site token of the site.
</ParamField>

## Request body

<ParamField body="page_url" type="string" required>
  Full URL of the page to approve.
</ParamField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "page_url": "https://example.com/home",
      "status": "approved",
      "approved_by": { "id": "...", "name": "Jane Smith" },
      "approved_at": "2026-03-02T14:00:00Z"
    }
  }
  ```
</ResponseExample>
