Overview
Pages allow you to create and manage documentation at both workspace and project levels. Workspace pages are accessible across all projects, while project pages are specific to individual projects. Page body mutations are applied to Plane's collaborative document so API updates remain consistent with active editor sessions.
The Pages Object
Attributes
iduuidUnique identifier for the page
namestringName of the page
description_htmlstringHTML description/content of the page
created_attimestampThe timestamp when the page was created
updated_attimestampThe timestamp when the page was last updated
created_byuuidID of the user who created the page
updated_byuuidID of the user who last updated the page
parent_iduuid or nullID of the parent page for a child page
collection_iduuid or nullID of the collection containing a workspace page
page_collection_iduuid or nullID of the page's placement record within its collection
archived_attimestamp or nullTime the page was archived
is_lockedbooleanWhether content mutations are blocked
{
"id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"created_at": "2023-11-19T11:56:55.176802Z",
"updated_at": "2023-11-19T11:56:55.176809Z",
"name": "Getting Started",
"description_html": "<h1>Welcome</h1><p>This is a getting started guide.</p>",
"created_by": "16c61a3a-512a-48ac-b0be-b6b46fe6f430",
"updated_by": "16c61a3a-512a-48ac-b0be-b6b46fe6f430",
"parent_id": null,
"collection_id": "0a8a3e6a-3c32-49c7-bbb5-b7a8e32c2f10",
"page_collection_id": "1d9b4f7b-56e8-4c63-9ff4-e24b508c162d",
"archived_at": null,
"is_locked": false
}
