{
"openapi": "3.0.2",
"info": {
"title": "Remote Model SPI REST Service",
"version": "1.0.0",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "The Remote Model SPI gives you access to portal models through REST services. It allows you to obtain and modify portal resources that are exposed by some of the models of the model SPI remotely. \n\nIn case virtual Portals are used the virtual Portal can be specified by adding the query parameter ?virtualPortal to the URL of the API explorer with the value of the virtual Portal URL context - for example http://localhost:10039/dx/api/remotemodel/v1/explorer/?virtualPortal=myVirtualPortalContext - all API calls will then have the virtual Portal context included in the URL. If you are using host based virtual Portals access the API explorer with the virtual Portal host.",
"contact": {
"name": "HCL DX Documentation",
"url": "https://help.hcltechsw.com/digital-experience/8.5/dev/rest.html"
}
},
"paths": {
"/cm/oid:{oid}": {
"summary": "This allows you to obtain and modify the content topology and the properties of content nodes such as pages, labels, and content URLs.",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "",
"get": {
"tags": [
"ContentModel"
],
"parameters": [
{
"examples": {
"oid": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OID or uniqueName of the page",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/atom+xml": {
}
},
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Success."
},
"404": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "404 Not Found"
}
},
"summary": "Obtain the properties of a page, label or content URL"
},
"put": {
"requestBody": {
"content": {
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/UpdatePage"
}
}
},
"required": true
},
"tags": [
"ContentModel"
],
"parameters": [
{
"examples": {
"oid": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OID or uniqueName of the page",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/atom+xml": {
}
},
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Edit an existing page"
},
"post": {
"requestBody": {
"content": {
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/CreatePage"
},
"examples": {
"CreateExternalURL": {
"value": "\n \n\n urldemo\n \n \n \n \n urldemo\n \n true\n html\n \n \n \n \n\n"
},
"CreatePage": {
"value": "\n\n\n \n \n \n \n \n \n \n \n Demo\n \n \n \n \n \n"
},
"CreateLabel": {
"value": "\n \n\n demoLabel\n \n \n \n \n demoLabel\n \n \n \n \n \n \n \n \n \n \n true\n html\n \n \n \n\n"
},
"CreateInternalURL": {
"value": "\n \n\n urldemo\n \n \n \n \n internalURL\n \n true\n html\n \n \n \n \n\n"
}
}
}
},
"required": true
},
"tags": [
"ContentModel"
],
"parameters": [
{
"examples": {
"oid": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OID or uniqueName of the parent page",
"in": "path",
"required": true
}
],
"responses": {
"201": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "201 Created"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Create a page, external or internal URL or label"
},
"delete": {
"tags": [
"ContentModel"
],
"parameters": [
{
"examples": {
"oid": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OID or uniqueName of the page",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/atom+xml": {
}
},
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Delete a page, label or content URL"
},
"parameters": [
{
"examples": {
"oid": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "",
"in": "path",
"required": true
},
{
"examples": {
"Requested model plus direct children": {
"value": "1"
}
},
"name": "levels",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "You can request a feed of a resource that is maintained in a tree model. If you do this, you can parameterize the URL,by the number of levels that the response should contain. levelcount is an integer value that is greater than zero. See additional documentation here: https://help.hcltechsw.com/digital-experience/9.5/dev/rest_addl_prms.html",
"schema": {
"type": "string"
},
"in": "query",
"required": false
},
{
"examples": {
"rep": {
"value": "compact"
}
},
"name": "RepresentationMode",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "If the feed always transports all available information, it will be large. Therefore there is a way to limit the size of the feed. You can use the query parameter rep to specify the volume of information that is transported. You use the parameter as follows:\n\n[ &rep = compact | full | empty ]",
"schema": {
"type": "string"
},
"in": "query"
},
{
"examples": {
"mdname": {
"value": "com.ibm.portal.Hidden\n"
}
},
"name": "ExplicitMetaData",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Some metadata names are hidden, as they are not exposed in the MetaData iterator; for example, this is the case for all names that start with com.ibm.portal. These names also do not show up in a feed.\n\nIn the compact representation mode no metadata may be exposed, although some certain MetaData are required. Therefore, in order to expose them in a feed, you need to explicitly request them. To do this, use the &mdname parameter as follows:\n[ &mdname=string ]",
"schema": {
"type": "string"
},
"in": "query",
"required": false
}
]
},
"/lm/oid:{oid}": {
"summary": "This allows you to obtain and modify the layout of a page, that is the topology of layout elements of a page, and the properties of layout elements, such as layout containers and layout controls.",
"get": {
"tags": [
"LayoutModel"
],
"parameters": [
{
"examples": {
"rep": {
"value": "compact"
}
},
"name": "RepresentationMode",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "If the feed always transports all available information, it will be large. Therefore there is a way to limit the size of the feed. You can use the query parameter rep to specify the volume of information that is transported. You use the parameter as follows:\n\n[ &rep = compact | full | empty ]",
"schema": {
"type": "string"
},
"in": "query"
},
{
"examples": {
"mdname": {
"value": "com.ibm.portal.Hidden"
}
},
"name": "ExplicitMetaData",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "\t\nSome metadata names are hidden, as they are not exposed in the MetaData iterator; for example, this is the case for all names that start with com.ibm.portal. These names also do not show up in a feed.\n\nIn the compact representation mode no metadata may be exposed, although some certain MetaData are required. Therefore, in order to expose them in a feed, you need to explicitly request them. To do this, use the &mdname parameter as follows: [ &mdname=string ]",
"schema": {
"type": "string"
},
"in": "query"
},
{
"examples": {
"objectID": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID of a page.",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Success."
}
},
"summary": "Obtain the layout and properties of a page"
},
"put": {
"requestBody": {
"content": {
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/CreateLayout"
}
}
},
"required": true
},
"tags": [
"LayoutModel"
],
"parameters": [
{
"examples": {
"objectID": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID of a page.",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/atom+xml": {
}
},
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Modify a page layout"
},
"post": {
"requestBody": {
"content": {
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/CreateLayout"
}
}
},
"required": true
},
"tags": [
"LayoutModel"
],
"parameters": [
{
"examples": {
"objectID": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID of a page.",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/atom+xml": {
}
},
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Add a layout to page"
},
"delete": {
"tags": [
"LayoutModel"
],
"parameters": [
{
"examples": {
"objectID": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID of a page.",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"content": {
"application/atom+xml": {
}
},
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Delete a page layout"
},
"parameters": [
{
"examples": {
"objectiD": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID of a page.",
"in": "path",
"required": true
}
]
},
"/nm/oid:{oid}": {
"summary": "This allows you to obtain the navigation topology only, as the navigation model is implied by the structure of the content model.",
"get": {
"tags": [
"NavigationModel"
],
"parameters": [
{
"examples": {
"levels": {
"value": "2"
}
},
"name": "levels",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "You can request a feed of a resource that is maintained in a tree model. If you do this, you can parameterize the URL,by the number of levels that the response should contain. levelcount is an integer value that is greater than zero. See additional documentation here: https://help.hcltechsw.com/digital-experience/9.5/dev/rest_addl_prms.html",
"schema": {
"type": "integer"
},
"in": "query"
},
{
"examples": {
"rep": {
"value": "compact"
}
},
"name": "RepresentationMode",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "If the feed always transports all available information, it will be large. Therefore there is a way to limit the size of the feed. You can use the query parameter rep to specify the volume of information that is transported. You use the parameter as follows:\n\n[ &rep = compact | full | empty ]",
"schema": {
"type": "string"
},
"in": "query"
},
{
"name": "ExplicitMetaData",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Some metadata names are hidden, as they are not exposed in the MetaData iterator; for example, this is the case for all names that start with com.ibm.portal. These names also do not show up in a feed.\n\nIn the compact representation mode no metadata may be exposed, although some certain MetaData are required. Therefore, in order to expose them in a feed, you need to explicitly request them. To do this, use the &mdname parameter as follows: [ &mdname=string ]",
"schema": {
"type": "string"
},
"in": "query"
},
{
"examples": {
"uniqueName": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID or uniqueName of a page.",
"in": "path",
"required": true
}
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Success."
}
},
"summary": "Obtain the navigation topology"
},
"put": {
"requestBody": {
"content": {
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/UpdateNavigationModel"
}
}
},
"required": true
},
"tags": [
"NavigationModel"
],
"parameters": [
{
"examples": {
"levels": {
"value": "2"
}
},
"name": "levels",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "You can request a feed of a resource that is maintained in a tree model. If you do this, you can parameterize the URL,by the number of levels that the response should contain. levelcount is an integer value that is greater than zero. See additional documentation here: https://help.hcltechsw.com/digital-experience/9.5/dev/rest_addl_prms.html",
"schema": {
"type": "integer"
},
"in": "query"
}
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Bad Request"
}
},
"summary": "Update the navigation model of a page"
},
"delete": {
"tags": [
"NavigationModel"
],
"parameters": [
{
"examples": {
"levels": {
"value": "2"
}
},
"name": "levels",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "try levels=2 on nav model",
"schema": {
"type": "integer"
},
"in": "query"
}
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Delete navigation topology"
},
"parameters": [
{
"examples": {
"uniqueName": {
"value": "ibm.portal.Home"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID or uniqueName of a page.",
"in": "path",
"required": true
},
{
"examples": {
"levels": {
"value": "&levels=2"
}
},
"name": "levels",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "try levels=2 on nav model",
"schema": {
"type": "integer"
},
"in": "query"
}
]
},
"/pm/oid:{oid}": {
"summary": "This allows you to obtain, create, update, and delete portlets.",
"get": {
"tags": [
"PortletModel"
],
"parameters": [
{
"examples": {
"rep": {
"value": "compact"
}
},
"name": "RepresentationMode",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "If the feed always transports all available information, it will be large. Therefore there is a way to limit the size of the feed. You can use the query parameter rep to specify the volume of information that is transported. You use the parameter as follows:\n\n[ &rep = compact | full | empty ]",
"schema": {
"type": "string"
},
"in": "query"
},
{
"examples": {
"mdname": {
"value": "com.ibm.portal.Hidden"
}
},
"name": "ExplicitMetaData",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Some metadata names are hidden, as they are not exposed in the MetaData iterator; for example, this is the case for all names that start with com.ibm.portal. These names also do not show up in a feed.\n\nIn the compact representation mode no metadata may be exposed, although some certain MetaData are required. Therefore, in order to expose them in a feed, you need to explicitly request them. To do this, use the &mdname parameter as follows: [ &mdname=string ]",
"schema": {
"type": "string"
},
"in": "query"
}
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Success."
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Bad Request"
},
"404": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Not Found"
}
},
"summary": "Obtain properties of a portlet"
},
"put": {
"requestBody": {
"content": {
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/UpdatePortlet"
}
}
},
"required": true
},
"tags": [
"PortletModel"
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Bad Request"
}
},
"summary": "Update portlet properties"
},
"delete": {
"tags": [
"PortletModel"
],
"responses": {
"200": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "OK"
},
"400": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "400 Bad Request"
}
},
"summary": "Delete a portlet"
},
"parameters": [
{
"examples": {
"objectID": {
"value": "wps.p.Welcome"
}
},
"name": "oid",
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "ObjectID of a portlet.",
"in": "path",
"required": true
}
]
}
},
"components": {
"schemas": {
"CreatePage": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "",
"type": "object",
"example": "\n\n\n \n \n \n \n \n \n \n \n Demo\n \n \n \n \n \n"
},
"CreateLayout": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Add a layout to a page",
"type": "object",
"example": "curl -X 'POST' \\\n 'http://10.134.210.29:10039/wps/mycontenthandler/lm/oid:test.Demo' \\\n -H 'accept: application/atom+xml' \\\n -H 'Content-Type: application/atom+xml' \\\n -d '\n\n \n HCL Portal\n \n HCL Digital Experience Model Feed\n \n \n 2007-07-04T13:28:56.358+0200\n \n lm:oid:newid_layout_0_1183548510931@oid:test.Demo\n lm:oid:test.Demo\n 2007-07-04T13:28:56.358+0200\n \n \n \n \n\n'"
},
"UpdatePage": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "UpdatePage using PUT",
"type": "object",
"example": "\n\n\n\n\n\n\n"
},
"UpdatePortlet": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Update properties of a portlet",
"type": "object",
"example": "\n \n \n HCL Digital Experience\n \n IBM WebSphere Portal Model Feed\n pm:oid:Z3_00000000000000A0BR2B300E87\n \n 2023-04-07T02:43:53.119Z\n 1\n \n IBM WebSphere Portal Model Feed\n\n\n pm:oid:Z3_00000000000000A0BR2B300E87\n Web Content Viewer\n Display Web Content\n 2019-08-03T12:49:28.001Z\n 2023-04-07T02:32:08.277Z\n \n \n \n برنامج مشاهدة محتويات الانترنت\n Visualitzador de contingut web\n Prohlížeč webového obsahu\n Webindholdsfremviser\n Web Content Viewer\n Προβολή διαδικτυακού περιεχομένου\n Web Content Viewer\n Web Content Viewer\n Visor de contenido web\n Visor de contenido web\n Web-sisällön katseluohjelma\n Afficheur de contenu Web\n Afficheur de contenu Web\n Preglednik Web sadržaja\n Webtartalom megjelenítő\n Web Content Viewer\n מציג תוכן רשת\n Web コンテンツ・ビューアー\n Веб-мазмұнын оқу құрылғысы\n 웹 컨텐츠 뷰어\n Viewer voor webcontent\n Visning av webinnhold\n Podgląd treści WWW\n Visualizador de conteúdo da Web\n Visualizador do Conteúdo da Web\n Vizualizator conţinut Web\n Просмотр веб-материалов\n Prehliadač webového obsahu\n Prikazovalnik spletne vsebine\n Web Content Viewer\n Webbinnehållsvisning\n การขอดูเนื้อหาบนเว็บ\n Web İçeriği Görüntüleyicisi\n Web Content Viewer\n Web Content Viewer\n 网页内容查看器\n Web 內容檢視器\n \n \n عرض محتويات الانترنت\n Visualitza de contingut web\n Zobrazit webový obsah\n Vis webindhold\n Webinhalte anzeigen\n Εμφάνιση διαδικτυακού περιεχομένου\n Display Web Content\n Display Web Content\n Visualiza contenido web\n Visualiza contenido web\n Näytä Web-sisältö\n Afficher le contenu Web\n Afficher le contenu Web\n Prikaz Web sadržaja\n Webtartalom megjelenítése\n Visualizza contenuto Web\n הצגת תוכן רשת\n Web コンテンツの表示\n Веб мазмұнды көрсету\n 웹 컨텐츠 표시 \n Webcontent afbeelden\n Vis webinnhold\n Wyświetl treść WWW\n Apresentar conteúdo da Web\n Exibir Conteúdo da Web\n Afişare conţinut web\n Показать веб-материалы\n Zobraziť webový obsah\n Prikazovanje spletne vsebine\n Display Web Content\n Visa webbinnehåll\n แสดงเนื้อหาเว็บ\n Web İçeriğini Görüntüle\n Відображення вмісту веб-сторінок\n Display Web Content\n 显示网页内容\n 顯示 Web 內容\n \n \n application/xml\n view\n \n \n text/html\n view\n help\n edit_defaults\n config\n \n \n x-application/vnd.xdime+xml\n view\n \n \n html\n view\n help\n edit_defaults\n config\n \n \n \n \n true\n \n \n \n \n \n\n"
},
"UpdateNavigationModel": {
"x-logo":{"url":"../DX_logo.svg","backgroundColor":"#F2F4F5","altText":"HCL_Digital_Experience"},"description": "Update Navigation Model of a page",
"type": "object",
"example": "\n\n \n\n Demo22\n nm:oid:Z6_7HDGG101P88IF06SQ9DT0N2000\n 2023-04-07T17:04:43.939Z\n 2023-04-07T20:31:44.627Z\n \n \n \n كيفية البدء\n Com començar\n Začínáme\n Kom godt i gang\n Einführung\n Έναρξη εργασιών\n Demo\n Iniciación\n Aloitusohje\n Mise en route\n Kezdeti lépések\n Introduzione\n איך מתחילים\n はじめに\n 시작하기\n Aan de slag\n Komme i gang\n Pierwsze kroki\n Introdução\n Introdução\n Iniţiere\n Начало работы\n Začíname\n Začetna navodila za delo\n Komma igång\n เริ่มต้นการใช้งาน\n Başlangıç Bilgileri\n Початок роботи\n 入门\n 入門\n Kako započeti\n Іске кірісу\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n\n"
}
}
}
}