Pages
Pages API
{
// the ID of the page
"page_id": 1,
// the unique locator for the page
"url": "my-page-title",
// the title of the page
"title": "My Page Title",
// the creation date for the page
"created_at": "2012-08-06T16:46:33-06:00",
// the date the page was last updated
"updated_at": "2012-08-08T14:25:20-06:00",
// (DEPRECATED) whether this page is hidden from students (note: this is always
// reflected as the inverse of the published value)
"hide_from_students": false,
// roles allowed to edit the page; comma-separated list comprising a combination
// of 'teachers', 'students', 'members', and/or 'public' if not supplied, course
// defaults are used
"editing_roles": "teachers,students",
// the User who last edited the page (this may not be present if the page was
// imported from another system)
"last_edited_by": null,
// the page content, in HTML (present when requesting a single page; optionally
// included when listing pages)
"body": "<p>Page Content</p>",
// whether the page is published (true) or draft state (false).
"published": true,
// scheduled publication date for this page
"publish_at": "2022-09-01T00:00:00",
// whether this page is the front page for the wiki
"front_page": false,
// Whether or not this is locked for the user.
"locked_for_user": false,
// (Optional) Information for the user about the lock. Present when
// locked_for_user is true.
"lock_info": null,
// (Optional) An explanation of why this is locked for the user. Present when
// locked_for_user is true.
"lock_explanation": "This page is locked until September 1 at 12:00am",
// The editor used to create and edit this page. May be one of 'rce' or
// 'block_editor'.
"editor": "rce",
// The block editor attributes for this page. (optionally included, and only if
// this is a block editor created page)
"block_editor_attributes": {"id":278,"version":"0.2","blocks":"{...block json here...}"}
}Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Parameter
Type
Description
Last updated
Was this helpful?