{"id":24225,"date":"2024-02-15T14:53:34","date_gmt":"2024-02-15T22:53:34","guid":{"rendered":"https:\/\/docs.extraview.com\/v25\/book\/server-side-templates-1\/"},"modified":"2025-02-14T11:12:12","modified_gmt":"2025-02-14T19:12:12","slug":"server-side-templates-1","status":"publish","type":"page","link":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/","title":{"rendered":"Server-Side Templates"},"content":{"rendered":"<p>Server-side templates can be defined for many API and CLI commands. These templates allow you to control the presentation of the output from the API command. Most commonly this is used to allow the administrator to integrate ExtraView with their company\u2019s own web site.<\/p>\n<p>For example, a page within your company\u2019s web site can perform a search of the ExtraView database and return the results formatted with the same look and feel as the web site.<\/p>\n<p>Templates allow you to use &#8220;tags&#8221; that are substituted at runtime, with the actual value in a record. For example, the tag <span class=\"fixedWidthFont\">__STATUS__<\/span> refers to the value of the STATUS field of the current issue. Tags are available for most fields in the data dictionary. In addition, if you place a data dictionary field on a template, it must exist on the <b>Detailed Report<\/b> layout inherited by the specific Business Area and Project. The user must also have read permission to the field.<\/p>\n<p>TEXTAREA, LOGAREA and PRINTTEXT fields have special handling within ExtraView. This is because they can be broken down into three components, the text itself, the user\u2019s name who entered the text, and a timestamp. Each of these components can be accessed individually, as shown in the following example. Note that the field name itself must be included as a tag, although it does not display anything in the output. Therefore, an HTML fragment that might display the DESCRIPTION field may look like:<\/p>\n<hr \/>\n<p class=\"fixedWidthFont\">&lt;TD&gt;<br \/>\n\t__DESCRIPTION__<br \/>\n\t__DESCRIPTION.USER__ : __DESCRIPTION.TIMESTAMP__<br \/>\n\t&lt;BR&gt;&lt;BR&gt;<br \/>\n\t__DESCRIPTION.TEXT__<br \/>\n\t&lt;BR&gt;<br \/>\n\t&lt;\/TD&gt;<\/p>\n<hr \/>\n<p>\n\tThe full explanation for each part of the field is as follows, where DDNAME is the data dictionary name of the field of display type TEXTAREA, LOGAREA or PRINTTEXT.<\/p>\n<table class=\"border\">\n<tbody>\n<tr class=\"tableHeaderRow\">\n<td>\n\t\t\t\tField name<\/td>\n<td>\n\t\t\t\tExplanation<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__DDNAME__<\/td>\n<td>\n\t\t\t\tA tag with the data dictionary name must be included in the template. No output occurs with this tag. It is a placeholder that ensures the remaining fields will be processed correctly<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__DDNAME.TEXT__<\/td>\n<td>\n\t\t\t\tThis is used to return the body of text within the comments<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__DDNAME.USER__<\/td>\n<td>\n\t\t\t\tThis is used to return the name of the user who entered the comment<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__DDNAME.TIMESTAMP__<\/td>\n<td>\n\t\t\t\tThis is used to return the date (and time) that the comment was entered. This will be returned in the current user\u2019s date and time format that is defined in their personal settings<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Three special tags are not fields in the data dictionary:<\/p>\n<table class=\"border\">\n<tbody>\n<tr class=\"tableHeaderRow\">\n<td>\n\t\t\t\tTag name<\/td>\n<td>\n\t\t\t\tExplanation<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__RESULTS__<\/td>\n<td>\n\t\t\t\tthis tag returns the result string that is sent, upon execution of a call to the API. For example, if you use an HTML form to insert a record into ExtraView, and define a template that contains only the tag <span class=\"fixedWidthFont\">__RESULTS__<\/span>, then the output would be: Problem #12342 added.<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__ERR_RESULTS__<\/td>\n<td>\n\t\t\t\tthis tag returns any error as a result of executing the API command. It is often used in conjunction with an error handling template, as described below<\/td>\n<\/tr>\n<tr>\n<td class=\"fixedWidthFont\">\n\t\t\t\t__RECORD_COUNT__<\/td>\n<td>\n\t\t\t\tthis tag returns the number of records found from the API action named search. You may use this field in the header or footer section of a template (see below), but not in the body part of a template.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>\n\tThe API commands that work with templates are:<\/p>\n<ul>\n<li>\n\t\tdelete<\/li>\n<li>\n\t\tfill_in<\/li>\n<li>\n\t\tget<\/li>\n<li>\n\t\tinsert<\/li>\n<li>\n\t\tinsert_user<\/li>\n<li>\n\t\tlist_attachment<\/li>\n<li>\n\t\tsearch<\/li>\n<li>\n\t\tupdate<\/li>\n<li>\n\t\tupdate_user_password<\/li>\n<\/ul>\n<p>The templates must be stored in a directory in your environment, typically located within your installation in a directory named user_templates. This directory is placed within your ExtraView installation, at the same level as the templates directory that resides inside the WEB-INF directory. This location may vary according to how you installed ExtraView. The ExtraView Administration screens have a feature that allows you to upload files directly to this directory from your local computer. Templates are processed slightly differently, according to whether they are intended to generate text or generate HTML. First, the assumption is that if the template name has a suffix of <b>.html<\/b> or <b>.htm<\/b>, then it is assumed that it will generate HTML code. With all other file suffixes, the assumption is that they contain text. If they are HTML templates:<\/p>\n<ul>\n<li>\n\t\tThe api calls <em>search<\/em> and <em>get<\/em> will have escaping enabled<\/li>\n<li>\n\t\tFields that have <b>display_as_url<\/b> set as attribute in the data dictionary will be rendered as HTML<\/li>\n<li>\n\t\tBlank or null values in fields will result in <b>&amp;nbsp;<\/b> being rendered<\/li>\n<\/ul>\n<p>The template you define can be in one of two forms:<\/p>\n<h3>\n\tStand-alone templates, used to format the results<\/h3>\n<h4>\n\tDesired Output<\/h4>\n<p><img decoding=\"async\" src=\"\/v25\/extraview-media\/images\/api\/template1.png\" width=\"90%\" \/><\/p>\n<h4>\n\tSample Template Code<\/h4>\n<hr \/>\n<p class=\"fixedWidthFont\">&lt;html&gt;<br \/>\n\t&lt;head&gt;<br \/>\n\t&lt;title&gt;ExtraView Insert Issue&lt;\/title&gt;<br \/>\n\t&lt;\/head&gt;<br \/>\n\t&lt;body bgcolor=&#8221;#FFFFFF&#8221;&gt;<br \/>\n\t&lt;p align=&#8221;center&#8221;&gt;Thank you for submitting your issue. It has been added to the tracking<br \/>\n\tdatabase with the ID&lt;\/p&gt;<br \/>\n\t&lt;p align=&#8221;center&#8221;&gt;&lt;font color=&#8221;#000000&#8243; size=&#8221;5&#8243;&gt; __ID__ &lt;\/font&gt;&lt;\/p&gt;<br \/>\n\t&lt;p align=&#8221;center&#8221;&gt;Please take note of this number and use this if you wish to inquire<br \/>\n\tabout the status.&lt;\/p&gt;<br \/>\n\t&lt;\/body&gt;<br \/>\n\t&lt;\/html&gt;<\/p>\n<hr \/>\n<h3>\n\tStructured Formatting of Results<\/h3>\n<p>This is composed of a template structure that may have up to three sections, each of which resides in a separate file. Each file name is defined by prefixing the template name with the letter h, b or f, according to whether it is the header section, body section or the footer section. Each section is optional, although it makes no real sense to not have the body section.<\/p>\n<h4>\n\tOverall Desired Output<\/h4>\n<p><img decoding=\"async\" src=\"\/v25\/extraview-media\/images\/api\/template2.png\" width=\"90%\" \/><\/p>\n<h4>\n\tSample Template Code<\/h4>\n<p>The template code is split into three files representing the fixed header, the repeating body and the fixed footer.<\/p>\n<p><b>Header File<\/b> &#8211; file name begins with &#8220;h&#8221;<\/p>\n<hr \/>\n<p class=\"fixedWidthFont\">&lt;html&gt;<br \/>\n\t&lt;head&gt;<br \/>\n\t&lt;title&gt;ExtraView Insert Issue&lt;\/title&gt;<br \/>\n\t&lt;\/head&gt;<br \/>\n\t&lt;body bgcolor=&#8221;#FFFFFF&#8221; leftmargin=&#8221;0&#8243; topmargin=&#8221;0&#8243;&gt;<br \/>\n\t&lt;p&gt;&lt;img src=&#8221;MyCo.jpg&#8221; width=&#8221;1000&#8243; height=&#8221;120&#8243;&gt;&lt;\/p&gt;<br \/>\n\t&lt;p&gt;&lt;font size=&#8221;4&#8243;&gt;The results of your search found the following records&lt;\/font&gt; &lt;\/p&gt;<br \/>\n\t&lt;table width=&#8221;100%&#8221; border=&#8221;0&#8243; cellpadding=&#8221;0&#8243;&gt;<\/p>\n<hr \/>\n<p>\n\t<b>Body File<\/b>&nbsp;&#8211; file name begins with &#8220;b&#8221;<\/p>\n<hr \/>\n<p class=\"fixedWidthFont\">&lt;tr bgcolor=&#8221;#CCCCFF&#8221;&gt;<br \/>\n\t&lt;td&gt;Issue Number&lt;\/td&gt;<br \/>\n\t&lt;td&gt;Status&lt;\/td&gt;<br \/>\n\t&lt;td&gt;Assigned To&lt;\/td&gt;<br \/>\n\t&lt;\/tr&gt;<br \/>\n\t&lt;tr&gt;<br \/>\n\t&lt;td&gt;__ID__&lt;\/td&gt;<br \/>\n\t&lt;td&gt;__STATUS__&lt;\/td&gt;<br \/>\n\t&lt;td&gt;__ASSIGNED_TO__&lt;\/td&gt;<br \/>\n\t&lt;\/tr&gt;<br \/>\n\t&lt;tr&gt;<br \/>\n\t&lt;td colspan=&#8221;3&#8243;&gt;&lt;b&gt;__SHORT_DESCR__&lt;\/b&gt;&lt;\/td&gt;<br \/>\n\t&lt;\/tr&gt;<br \/>\n\t&lt;tr&gt;<br \/>\n\t&lt;td colspan=&#8221;3&#8243;&gt; __REPEAT_START__ __Description__ __REPEAT_STOP__ &lt;\/td&gt;<br \/>\n\t&lt;\/tr&gt;<\/p>\n<hr \/>\n<p>\n\t<b>Footer File<\/b>&nbsp;&#8211; file name begins with &#8220;f&#8221;<\/p>\n<hr \/>\n<p class=\"fixedWidthFont\">&lt;\/TABLE&gt;<br \/>\n\t&lt;hr&gt;<br \/>\n\t&lt;p&gt;&lt;i&gt;&lt;b&gt;MyCo&lt;\/b&gt;&lt;\/i&gt; &#8211; Your one stop shop for integrated data services&lt;br&gt; Powered by ExtraView&lt;\/p&gt;<br \/>\n\t&lt;\/body&gt;<br \/>\n\t&lt;\/html&gt;<\/p>\n<hr \/>\n<h3>\n\tThe fill_in Template<\/h3>\n<p>It is sometimes useful to be able to generate a template and populate it with values that do not originate in ExtraView\u2019s database. The fill_in action fulfills this need.<\/p>\n<h4>\n\tSyntax<\/h4>\n<p class=\"fixedWidthFont\">http:\/\/www.myserver.com\/evj\/ExtraView\/ev_api.action?user_id=username &amp;password=password&amp;statevar=fill_in&amp;p_template_file=this_template.html&amp;id=12345 &amp;any_name_at_all=Phyllis%20Mitchell &#8230; &#8230; &#8230;<\/p>\n<p>The template file, <span class=\"fixedWidthFont\">this_template.html<\/span>, will be returned to the user\u2019s screen, with the values for <span class=\"fixedWidthFont\">id<\/span> and <span class=\"fixedWidthFont\">any_name_at_all<\/span> filled in.<\/p>\n<h4>\n\tSample Template File<\/h4>\n<hr \/>\n<p><code>&lt;html&gt;<br \/>\n\t&lt;head&gt;<br \/>\n\t&lt;title&gt;ExtraView Entry Details&lt;\/title&gt;<br \/>\n\t&lt;\/head&gt;<br \/>\n\t&lt;body&gt;<br \/>\n\t&lt;hr&gt;<br \/>\n\t&lt;p align=center&gt;The ID for the problem is __ID__ and it was entered by __ANY_NAME_AT_ALL__.&lt;\/p&gt;<br \/>\n\t&lt;hr&gt;<br \/>\n\t&lt;\/body&gt;<br \/>\n\t&lt;\/html&gt;<\/code><\/p>\n<hr \/>\n<h4>\n\tBrowser Output<\/h4>\n<p><img decoding=\"async\" src=\"\/v25\/extraview-media\/images\/api\/template2.png\" width=\"90%\" \/><\/p>\n<h3>\n\tThe <span class=\"fixedWidthFont\">error.html<\/span> Template<\/h3>\n<p>If the code that executes in the API command that was submitted completes with an error or unexpected condition, the template named error.html is invoked and used to display the error to the user. Within this template, the tag <span class=\"fixedWidthFont\">__ERR_RESULTS__<\/span> is replaced with the actual error message from the command being executed.<\/p>\n<h4>\n\tSample Template File<\/h4>\n<hr \/>\n<p class=\"fixedWidthFont\">&lt;html&gt;<br \/>\n\t&lt;head&gt;<br \/>\n\t&lt;title&gt;ExtraView Error!&lt;\/title&gt;<br \/>\n\t&lt;\/head&gt;<br \/>\n\t&lt;body bgcolor=&#8221;#cedece&#8221;&gt;<br \/>\n\t&lt;hr&gt;<br \/>\n\t&lt;p align=center&gt;__ERR_RESULTS__&lt;\/p&gt;<br \/>\n\t&lt;hr&gt;<br \/>\n\t&lt;\/body&gt;<br \/>\n\t&lt;\/html&gt;<\/p>\n<hr \/>\n<h4>\n\tBrowser Output<\/h4>\n<p><img decoding=\"async\" src=\"\/v25\/extraview-media\/images\/api\/template4.png\" width=\"90%\" \/><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Server-side templates can be defined for many API and CLI commands. These templates allow you to control the presentation of the output from the API command. Most commonly this is used to allow the administrator to integrate ExtraView with their company\u2019s own web site. For example, a page within your company\u2019s web site can perform&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":24223,"menu_order":1,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"_lmt_disableupdate":"no","_lmt_disable":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":""},"class_list":["post-24225","page","type-page","status-publish","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Server-Side Templates - Product Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Server-Side Templates - Product Documentation\" \/>\n<meta property=\"og:description\" content=\"Server-side templates can be defined for many API and CLI commands. These templates allow you to control the presentation of the output from the API command. Most commonly this is used to allow the administrator to integrate ExtraView with their company\u2019s own web site. For example, a page within your company\u2019s web site can perform...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/\" \/>\n<meta property=\"og:site_name\" content=\"Product Documentation\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-14T19:12:12+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/\",\"url\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/\",\"name\":\"Server-Side Templates - Product Documentation\",\"isPartOf\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\"},\"datePublished\":\"2024-02-15T22:53:34+00:00\",\"dateModified\":\"2025-02-14T19:12:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"ExtraView 25\",\"item\":\"https:\/\/docs.extraview.com\/v25\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Application Programming Interface\",\"item\":\"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Server-Side Templates\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#website\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"name\":\"ExtraView Product Documentation\",\"description\":\"ExtraView Documentation\",\"publisher\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#organization\",\"name\":\"ExtraView Corporation\",\"url\":\"https:\/\/docs.extraview.com\/v25\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"contentUrl\":\"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png\",\"width\":512,\"height\":512,\"caption\":\"ExtraView Corporation\"},\"image\":{\"@id\":\"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Server-Side Templates - Product Documentation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/","og_locale":"en_US","og_type":"article","og_title":"Server-Side Templates - Product Documentation","og_description":"Server-side templates can be defined for many API and CLI commands. These templates allow you to control the presentation of the output from the API command. Most commonly this is used to allow the administrator to integrate ExtraView with their company\u2019s own web site. For example, a page within your company\u2019s web site can perform...","og_url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/","og_site_name":"Product Documentation","article_modified_time":"2025-02-14T19:12:12+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/","url":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/","name":"Server-Side Templates - Product Documentation","isPartOf":{"@id":"https:\/\/docs.extraview.com\/v25\/#website"},"datePublished":"2024-02-15T22:53:34+00:00","dateModified":"2025-02-14T19:12:12+00:00","breadcrumb":{"@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/server-side-templates-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":2,"name":"ExtraView 25","item":"https:\/\/docs.extraview.com\/v25\/"},{"@type":"ListItem","position":3,"name":"Application Programming Interface","item":"https:\/\/docs.extraview.com\/v25\/extraview-25\/application-programming-interface-1\/"},{"@type":"ListItem","position":4,"name":"Server-Side Templates"}]},{"@type":"WebSite","@id":"https:\/\/docs.extraview.com\/v25\/#website","url":"https:\/\/docs.extraview.com\/v25\/","name":"ExtraView Product Documentation","description":"ExtraView Documentation","publisher":{"@id":"https:\/\/docs.extraview.com\/v25\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/docs.extraview.com\/v25\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/docs.extraview.com\/v25\/#organization","name":"ExtraView Corporation","url":"https:\/\/docs.extraview.com\/v25\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/","url":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","contentUrl":"https:\/\/docs-stg.extraview.com\/wp-content\/uploads\/2024\/03\/favicon.png","width":512,"height":512,"caption":"ExtraView Corporation"},"image":{"@id":"https:\/\/docs.extraview.com\/v25\/#\/schema\/logo\/image\/"}}]}},"taxonomy_info":[],"featured_image_src_large":false,"author_info":{"display_name":"carl.koppel","author_link":"https:\/\/docs.extraview.com\/v25\/author\/carl-koppel\/"},"comment_info":0,"_links":{"self":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24225","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/comments?post=24225"}],"version-history":[{"count":0,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24225\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/pages\/24223"}],"wp:attachment":[{"href":"https:\/\/docs.extraview.com\/v25\/wp-json\/wp\/v2\/media?parent=24225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}