Pages
Delete a Page
DELETE /api/v1/sites/{siteId}/pages/{contentId} — soft-delete a draft page.Updated 27d ago
Required scope: content:delete Use the page id from List pages or from a create/update response.DELETE /api/v1/sites/{siteId}/pages/{contentId} Authorization: Bearer av_live_…
curl -s -X DELETE 'https://help.aveiro.app/api/v1/sites/SITE_ID/pages/CONTENT_ID' \ -H 'Authorization: Bearer av_live_…'
const res = await fetch( `https://help.aveiro.app/api/v1/sites/${siteId}/pages/${contentId}`, { method: "DELETE", headers: { Authorization: `Bearer ${process.env.AVEIRO_API_TOKEN}` }, }, ); const body = await res.json();