Pages
Update Page
Updates the configuration of a single custom page for this portal.
patch/v3/portals/{portalId}/pages/{pageId}
Path parameters
portalIdstring uuid required
Example:f32d905a-ed33-46a3-a093-d8f536af9a8a
The Portal identifier
pageIdstring uuid required
Example:ebbac5b0-ac89-45c3-9d2e-c4542c657e79
ID of the page.
Request body
Example request
{
"slug": "/my-page",
"title": "My Page",
"content": "# Welcome to My Page",
"visibility": "public",
"status": "published",
"description": "A custom page about developer portals"
}Response
Details about a page in a portal.
Example response
{
"id": "5f9fd312-a987-4628-b4c5-bb4f4fddd5f7",
"slug": "/my-page",
"title": "My Page",
"content": "# Welcome to My Page",
"visibility": "public",
"status": "published",
"description": "A custom page about developer portals",
"created_at": "2022-11-04T20:10:06.927Z",
"updated_at": "2022-11-04T20:10:06.927Z"
}