{"id":17524,"date":"2026-02-12T10:49:00","date_gmt":"2026-02-12T13:49:00","guid":{"rendered":"https:\/\/kb.elipse.com.br\/en\/?p=17524"},"modified":"2026-02-12T10:50:06","modified_gmt":"2026-02-12T13:50:06","slug":"exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3","status":"publish","type":"post","link":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/","title":{"rendered":"Exporting a Section Report as a Password-Protected PDF in Elipse E3."},"content":{"rendered":"<h3 data-start=\"330\" data-end=\"342\">Question<\/h3>\n<p data-start=\"346\" data-end=\"479\">How can I generate and export a <strong data-start=\"378\" data-end=\"424\">Section Report as a password-protected PDF<\/strong>, so that a password is required when opening the file?<\/p>\n<hr data-start=\"483\" data-end=\"486\" \/>\n<h3 data-start=\"490\" data-end=\"502\">Solution<\/h3>\n<p data-start=\"506\" data-end=\"682\">The <strong data-start=\"510\" data-end=\"528\">Section Report<\/strong> allows you to view and print real-time values of system variables, as well as data stored in a Database (Alarms, Historical data, Queries, and Formulas).<\/p>\n<p data-start=\"686\" data-end=\"713\">To insert a Section Report:<\/p>\n<ol data-start=\"717\" data-end=\"870\">\n<li data-start=\"717\" data-end=\"797\">\n<p data-start=\"720\" data-end=\"797\">In <strong data-start=\"723\" data-end=\"738\">Domain mode<\/strong>, right-click <strong data-start=\"752\" data-end=\"779\">Visualization \u2013 Reports<\/strong> in the Organizer.<\/p>\n<\/li>\n<li data-start=\"799\" data-end=\"838\">\n<p data-start=\"802\" data-end=\"838\">Select <strong data-start=\"809\" data-end=\"837\">Insert Section Report in<\/strong>.<\/p>\n<\/li>\n<li data-start=\"840\" data-end=\"870\">\n<p data-start=\"843\" data-end=\"870\">Choose the desired project.<\/p>\n<\/li>\n<\/ol>\n<p data-start=\"874\" data-end=\"998\">It is possible to export the report as a <strong data-start=\"915\" data-end=\"941\">password-protected PDF<\/strong>, ensuring additional security when sharing the document.<\/p>\n<p data-start=\"1002\" data-end=\"1134\">To do so, use the <strong data-start=\"1020\" data-end=\"1037\">OwnerPassword<\/strong> and <strong data-start=\"1042\" data-end=\"1058\">UserPassword<\/strong> properties, available through the <strong data-start=\"1093\" data-end=\"1112\">GetExportFilter<\/strong> method of the report.<\/p>\n<p data-start=\"1138\" data-end=\"1283\">The script must be added to the event responsible for generating the report (usually the <strong data-start=\"1227\" data-end=\"1236\">Click<\/strong> event of a button, such as <em data-start=\"1264\" data-end=\"1281\">Generate Report<\/em>).<\/p>\n<h3 data-start=\"1287\" data-end=\"1305\">Script example<span style=\"font-size: 16px;\">\u00a0<\/span><\/h3>\n<div class=\"contain-inline-size rounded-2xl corner-superellipse\/1.1 relative bg-token-sidebar-surface-primary\">\n<div class=\"overflow-y-auto p-4\" dir=\"ltr\">\n<p><code class=\"whitespace-pre!\"><code class=\"whitespace-pre!\"><\/code><\/code><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">Set Report = Application.LoadReport(\"SectionReport\")\r\nSet exportfilter = report.GetExportFilter(\"PDF\") \r\nexportfilter.OwnerPassword = \"Password\" \r\nexportfilter.UserPassword = \"Password\" \r\nexportfilter.UserPermissions =\"16\"\r\nreport.Export exportfilter, \"C:\\Report.pdf\"<\/pre>\n<p><code class=\"whitespace-pre!\"><code class=\"whitespace-pre!\"><\/code><\/code><\/p>\n<\/div>\n<\/div>\n<hr data-start=\"1601\" data-end=\"1604\" \/>\n<h3 data-start=\"1608\" data-end=\"1627\">Properties used<\/h3>\n<p data-start=\"1631\" data-end=\"1704\"><strong data-start=\"1631\" data-end=\"1648\">OwnerPassword<\/strong><br data-start=\"1648\" data-end=\"1652\" \/>Defines the owner password of the exported PDF file.<\/p>\n<p data-start=\"1708\" data-end=\"1788\"><strong data-start=\"1708\" data-end=\"1724\">UserPassword<\/strong><br data-start=\"1724\" data-end=\"1728\" \/>Defines the password required to open the exported PDF file.<\/p>\n<p data-start=\"1792\" data-end=\"1886\"><strong data-start=\"1792\" data-end=\"1811\">UserPermissions<\/strong><br data-start=\"1811\" data-end=\"1815\" \/>Specifies the permissions granted to the user of the exported PDF file.<\/p>\n<p data-start=\"1890\" data-end=\"1907\">Available values:<\/p>\n<ul data-start=\"1911\" data-end=\"2576\">\n<li data-start=\"1911\" data-end=\"1956\">\n<p data-start=\"1913\" data-end=\"1956\"><strong data-start=\"1913\" data-end=\"1939\">0 \u2013 rv2PermissionNone:<\/strong> No permissions<\/p>\n<\/li>\n<li data-start=\"1958\" data-end=\"2011\">\n<p data-start=\"1960\" data-end=\"2011\"><strong data-start=\"1960\" data-end=\"1987\">4 \u2013 rv2PermissionPrint:<\/strong> Print permission only<\/p>\n<\/li>\n<li data-start=\"2013\" data-end=\"2082\">\n<p data-start=\"2015\" data-end=\"2082\"><strong data-start=\"2015\" data-end=\"2051\">8 \u2013 rv2PermissionModifyContents:<\/strong> Permission to modify content<\/p>\n<\/li>\n<li data-start=\"2084\" data-end=\"2142\">\n<p data-start=\"2086\" data-end=\"2142\"><strong data-start=\"2086\" data-end=\"2113\">16 \u2013 rv2PermissionCopy:<\/strong> Permission to copy content<\/p>\n<\/li>\n<li data-start=\"2144\" data-end=\"2220\">\n<p data-start=\"2146\" data-end=\"2220\"><strong data-start=\"2146\" data-end=\"2185\">32 \u2013 rv2PermissionModifyAnnotation:<\/strong> Permission to modify annotations<\/p>\n<\/li>\n<li data-start=\"2222\" data-end=\"2284\">\n<p data-start=\"2224\" data-end=\"2284\"><strong data-start=\"2224\" data-end=\"2254\">256 \u2013 rv2PermissionFillIn:<\/strong> Permission to fill in forms<\/p>\n<\/li>\n<li data-start=\"2286\" data-end=\"2392\">\n<p data-start=\"2288\" data-end=\"2392\"><strong data-start=\"2288\" data-end=\"2329\">512 \u2013 rv2PermissionAccessibleReaders:<\/strong> Permission to open the file in accessibility-enabled devices<\/p>\n<\/li>\n<li data-start=\"2394\" data-end=\"2576\">\n<p data-start=\"2396\" data-end=\"2576\"><strong data-start=\"2396\" data-end=\"2429\">1024 \u2013 rv2PermissionAssembly:<\/strong> Permission to insert, remove, and rotate pages, as well as create thumbnails and bookmarks, even if modify content permission (8) is not granted<\/p>\n<\/li>\n<\/ul>\n<p data-start=\"2580\" data-end=\"2675\">By default, the user has <strong data-start=\"2605\" data-end=\"2624\">all permissions<\/strong>, which corresponds to the sum of all values above.<\/p>\n<hr data-start=\"2679\" data-end=\"2682\" \/>\n<h3 data-start=\"2686\" data-end=\"2697\">Remarks<\/h3>\n<ul data-start=\"2701\" data-end=\"2966\">\n<li data-start=\"2701\" data-end=\"2781\">\n<p data-start=\"2703\" data-end=\"2781\">It is recommended to define strong passwords to prevent unauthorized access.<\/p>\n<\/li>\n<li data-start=\"2783\" data-end=\"2845\">\n<p data-start=\"2785\" data-end=\"2845\">Permissions can be combined by summing the desired values.<\/p>\n<\/li>\n<li data-start=\"2847\" data-end=\"2966\">\n<p data-start=\"2849\" data-end=\"2966\">For more details about export filter properties and methods, refer to the <a href=\"https:\/\/docs.elipse.com.br\/documents\/en-us\/e3\/latest\/manual\/script\/index.html?e3script_e3sectionreport_exportfilter_pdf_property.htm\"><strong data-start=\"2923\" data-end=\"2965\">Elipse E3 Reference and Scripts Manual<\/strong>.<\/a><\/p>\n<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Question How can I generate and export a Section Report as a password-protected PDF, so that a password is required when opening the file? Solution The Section Report allows you&hellip;<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_exactmetrics_skip_tracking":false,"_exactmetrics_sitenote_active":false,"_exactmetrics_sitenote_note":"","_exactmetrics_sitenote_category":0},"categories":[1220,730],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v19.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Exporting a Section Report as a Password-Protected PDF in Elipse E3.<\/title>\n<meta name=\"description\" content=\"Learn how to export a Section Report in Elipse E3 as a password-protected PDF using the OwnerPassword, UserPassword, and UserPermissions properties.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Exporting a Section Report as a Password-Protected PDF in Elipse E3.\" \/>\n<meta property=\"og:description\" content=\"Learn how to export a Section Report in Elipse E3 as a password-protected PDF using the OwnerPassword, UserPassword, and UserPermissions properties.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\" \/>\n<meta property=\"og:site_name\" content=\"Elipse Knowledgebase\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/www.facebook.com\/elipsesoftware\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-12T13:49:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-12T13:50:06+00:00\" \/>\n<meta name=\"author\" content=\"D\u00e9lio Damin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"D\u00e9lio Damin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\"},\"author\":{\"name\":\"D\u00e9lio Damin\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\"},\"headline\":\"Exporting a Section Report as a Password-Protected PDF in Elipse E3.\",\"datePublished\":\"2026-02-12T13:49:00+00:00\",\"dateModified\":\"2026-02-12T13:50:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\"},\"wordCount\":312,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"articleSection\":[\"Section Report\",\"Elipse E3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\",\"url\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\",\"name\":\"[:pt]Rascunho autom\u00e1tico[:en]Exporting a Section Report as a Password-Protected PDF in Elipse E3.[:]\",\"isPartOf\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#website\"},\"datePublished\":\"2026-02-12T13:49:00+00:00\",\"dateModified\":\"2026-02-12T13:50:06+00:00\",\"description\":\"Learn how to export a Section Report in Elipse E3 as a password-protected PDF using the OwnerPassword, UserPassword, and UserPermissions properties.\",\"breadcrumb\":{\"@id\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"In\u00edcio\",\"item\":\"https:\/\/kb.elipse.com.br\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Exporting a Section Report as a Password-Protected PDF in Elipse E3.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/kb.elipse.com.br\/#website\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"name\":\"Elipse Knowledgebase\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/kb.elipse.com.br\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/kb.elipse.com.br\/#organization\",\"name\":\"Elipse Software\",\"url\":\"https:\/\/kb.elipse.com.br\/\",\"sameAs\":[\"http:\/\/www.facebook.com\/elipsesoftware\"],\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"contentUrl\":\"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png\",\"width\":161,\"height\":58,\"caption\":\"Elipse Software\"},\"image\":{\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778\",\"name\":\"D\u00e9lio Damin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g\",\"caption\":\"D\u00e9lio Damin\"},\"url\":\"https:\/\/kb.elipse.com.br\/en\/author\/delio\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Exporting a Section Report as a Password-Protected PDF in Elipse E3.","description":"Learn how to export a Section Report in Elipse E3 as a password-protected PDF using the OwnerPassword, UserPassword, and UserPermissions properties.","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:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/","og_locale":"en_US","og_type":"article","og_title":"[:pt]Rascunho autom\u00e1tico[:en]Exporting a Section Report as a Password-Protected PDF in Elipse E3.[:]","og_description":"Learn how to export a Section Report in Elipse E3 as a password-protected PDF using the OwnerPassword, UserPassword, and UserPermissions properties.","og_url":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/","og_site_name":"Elipse Knowledgebase","article_publisher":"http:\/\/www.facebook.com\/elipsesoftware","article_published_time":"2026-02-12T13:49:00+00:00","article_modified_time":"2026-02-12T13:50:06+00:00","author":"D\u00e9lio Damin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"D\u00e9lio Damin","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#article","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/"},"author":{"name":"D\u00e9lio Damin","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778"},"headline":"Exporting a Section Report as a Password-Protected PDF in Elipse E3.","datePublished":"2026-02-12T13:49:00+00:00","dateModified":"2026-02-12T13:50:06+00:00","mainEntityOfPage":{"@id":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/"},"wordCount":312,"commentCount":0,"publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"articleSection":["Section Report","Elipse E3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/","url":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/","name":"[:pt]Rascunho autom\u00e1tico[:en]Exporting a Section Report as a Password-Protected PDF in Elipse E3.[:]","isPartOf":{"@id":"https:\/\/kb.elipse.com.br\/#website"},"datePublished":"2026-02-12T13:49:00+00:00","dateModified":"2026-02-12T13:50:06+00:00","description":"Learn how to export a Section Report in Elipse E3 as a password-protected PDF using the OwnerPassword, UserPassword, and UserPermissions properties.","breadcrumb":{"@id":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/kb.elipse.com.br\/en\/exporting-a-section-report-as-a-password-protected-pdf-in-elipse-e3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"In\u00edcio","item":"https:\/\/kb.elipse.com.br\/en\/"},{"@type":"ListItem","position":2,"name":"Exporting a Section Report as a Password-Protected PDF in Elipse E3."}]},{"@type":"WebSite","@id":"https:\/\/kb.elipse.com.br\/#website","url":"https:\/\/kb.elipse.com.br\/","name":"Elipse Knowledgebase","description":"","publisher":{"@id":"https:\/\/kb.elipse.com.br\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/kb.elipse.com.br\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/kb.elipse.com.br\/#organization","name":"Elipse Software","url":"https:\/\/kb.elipse.com.br\/","sameAs":["http:\/\/www.facebook.com\/elipsesoftware"],"logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/","url":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","contentUrl":"https:\/\/kb.elipse.com.br\/wp-content\/uploads\/2019\/05\/schererelipse-com-br\/logoElipse.png","width":161,"height":58,"caption":"Elipse Software"},"image":{"@id":"https:\/\/kb.elipse.com.br\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/be597eff34b5f24af940a55332870778","name":"D\u00e9lio Damin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/kb.elipse.com.br\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fdf251d36430f8dd22144c3f1bc53376?s=96&d=mm&r=g","caption":"D\u00e9lio Damin"},"url":"https:\/\/kb.elipse.com.br\/en\/author\/delio\/"}]}},"_links":{"self":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/17524"}],"collection":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/comments?post=17524"}],"version-history":[{"count":2,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/17524\/revisions"}],"predecessor-version":[{"id":17526,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/posts\/17524\/revisions\/17526"}],"wp:attachment":[{"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/media?parent=17524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/categories?post=17524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kb.elipse.com.br\/en\/wp-json\/wp\/v2\/tags?post=17524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}