Skip to main content

Delete Page

DELETE/api/v1/dashboard/content/pages/{page_id}

Overview

Permanently deletes a content page. This action cannot be undone. The page is removed regardless of its current status.

Authentication

info

Bearer authentication required - Pass your credentials as Authorization: Bearer <client_id>:<api_key>:<api_secret>.

Headers

HeaderTypeRequiredDescription
AuthorizationstringYesBearer <client_id>:<api_key>:<api_secret>

Path Parameters

ParameterTypeRequiredDescription
page_idstring (UUID)YesThe unique identifier of the page to delete

Response

successboolean

Always true on successful deletion

Example Request

curl -X DELETE "https://spideriq.ai/api/v1/dashboard/content/pages/e5f6a7b8-c9d0-1234-efab-567890123456" \
-H "Authorization: Bearer $CLIENT_TOKEN"

Example Response

{
"success": true
}

Status Codes

Status CodeMeaningDescription
200OKPage deleted successfully
401UnauthorizedInvalid or missing Bearer token
404Not FoundPage not found or belongs to another client