Create a Page
POST /api/v1/sites/{siteId}/pages — create a new draft MDX page at a path.Updated 1mo ago
Required scope: content:writePOST /api/v1/sites/{siteId}/pages Authorization: Bearer av_live_… Content-Type: application/json Idempotency-Key: create-docs-overview-v1 { "path": "/guides/overview.mdx", "content": "# Overview Welcome to the guides.", "metadata": { "title": "Overview", "summary": "Getting started with our API" } }
curl -s -X POST 'https://help.aveiro.app/api/v1/sites/SITE_ID/pages' \ -H 'Authorization: Bearer av_live_…' \ -H 'Content-Type: application/json' \ -H 'Idempotency-Key: create-overview-2026-07-08' \ -d '{ "path": "/guides/overview.mdx", "content": "# Overview Draft content here.", "metadata": { "title": "Overview" } }'