Skip to main content
DELETE
/
api
/
v1
/
pages
/
:id.json
Delete Page
curl --request DELETE \
  --url https://api.launchmystore.io/api/v1/pages/:id.json \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "deleted": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Delete Page

Permanently deletes a page. This action cannot be undone.

Request

curl -X DELETE "https://api.launchmystore.io/api/v1/pages/page_abc123.json" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Path Parameters

id
string
required
The unique page ID to delete

Response

success
boolean
Whether the request succeeded
data
object
Confirmation object

Example Response

{
  "success": true,
  "data": {
    "id": "page_abc123",
    "deleted": true
  }
}

Notes

  • Navigation menu links pointing to this page will become broken
  • Consider setting published: false instead if you may need to restore the page later

Error Codes

CodeDescription
UNAUTHORIZEDInvalid or missing access token
FORBIDDENApp doesn’t have write_content scope
NOT_FOUNDPage with the specified ID does not exist