The page object includes properties that describe an individual page. Properties include everything from the page's API URI to the page's visit count.
Outputs the URI of the current page.
DekiScript | Output |
---|---|
page.api; |
https://expert-help.nice.com/@api/deki/pages/3571?redirects=0 |
Outputs the User object for the user that last edited the current page.
DekiScript | Output |
---|---|
page.author.displayname; |
Brit VanBlake |
Outputs a string with the page's last modified date.
DekiScript | Output |
---|---|
page.date; |
Fri, 23 Feb 2024 18:28:55 GMT |
Outputs a map of the current page's attached files.
Outputs a number for the current page's unique page ID.
DekiScript | Output |
---|---|
page.id; |
3571 |
Outputs a string of the current page's name (from the URL).
DekiScript | Output |
---|---|
page.name; |
Page_objects |
Outputs a map of details for the immediate parent page of the current page.
Outputs a string of the current page's path. The path is the part of the URL after the URL (http://support.yoursite.com/PATH)
DekiScript | Output |
---|---|
page.path; |
Manage/Author/DekiScript/Page_objects |
Outputs a map of details for the immediate sub-pages of the current page.
Outputs a map of the tags for the current page.
Outputs a string of the Title for the current page (not from the URL).
DekiScript | Output |
---|---|
page.title; |
Page objects |
Outputs a number for the total view count of the current page.
DekiScript | Output |
---|---|
page.viewcount; |
1968 |