Create Subpage
Playground
POST
Endpoint: /api/content/v1/pages
Request Parameters
| Property Name | Type | Required | Description |
|---|---|---|---|
| parentPageId | String | yes | ID of the parent page |
| title | String | yes | Title of the subpage |
| hasLayout | Boolean | no, default is true | Whether the page should have a layout |
Example
Response
Success (200): Page created successfully. Forbidden (403): Operation not permitted. Conflict (409): Conflict encountered (e.g., duplicate title).Bulk Move Pages
Playground
PUT
Endpoint: /api/content/v1/pages/bulk/move
Request Parameters
| Property Name | Type | Required | Description |
|---|---|---|---|
| pageIds | Array of Numbers | yes | IDs of pages to move |
| parentPageId | Number | yes | ID of the new parent page |
| pagePermission | String | yes | Permission for the pages |
pagePermission:
"ORIGINAL"
Example
Response
Success (200): Pages moved successfully. Forbidden (403): Permission denied. Conflict (409): Conflict encountered (e.g., permission constraints).Revoke Page Access
Playground
DELETE
Endpoint: /api/content/v1/share/page/{pageId}/user/{personId}
Path Parameters
| Property Name | Type | Required | Description |
|---|---|---|---|
| pageId | Number | yes | ID of the page |
| personId | Number | yes | ID of the user |