Skip to main content
POST
/
sites
/
{siteId}
/
approvals
/
unapprove
Unapprove page
curl --request POST \
  --url https://api.surefeedback.com/api/v1/sites/{siteId}/approvals/unapprove \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "page_url": "<string>"
}
'
{
  "success": true,
  "data": {
    "page_url": "https://example.com/home",
    "status": "unapproved"
  }
}
Removes the approved status from a page.

Path parameters

siteId
string
required
UUID or site token of the site.

Request body

page_url
string
required
Full URL of the page to unapprove.
{
  "success": true,
  "data": {
    "page_url": "https://example.com/home",
    "status": "unapproved"
  }
}