{"id":5210,"date":"2013-07-09T15:51:23","date_gmt":"2013-07-09T13:51:23","guid":{"rendered":"https:\/\/ingmarverheij.com\/?p=5210"},"modified":"2013-07-09T16:23:15","modified_gmt":"2013-07-09T14:23:15","slug":"configure-citrix-session-printer-via-powershell","status":"publish","type":"post","link":"https:\/\/ingmarverheij.com\/en\/configure-citrix-session-printer-via-powershell\/","title":{"rendered":"Configure Citrix Session Printer via PowerShell"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" title=\"\" style=\"border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: right; padding-top: 0px; padding-left: 0px; margin: 0px 0px 0px 5px; display: inline; padding-right: 0px; border-top-width: 0px\" border=\"0\" alt=\"\" align=\"right\" src=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/ProjectLasericon.jpg\" width=\"88\" height=\"88\" \/>In a previous article I explained how you can set <a href=\"https:\/\/ingmarverheij.com\/en\/set-citrix-policies-via-powershell\/\">Citrix (domain) policies via PowerShell<\/a>. In one of the comments I got a question from Tony who wanted to set Session Printers. In this article I\u2019ll explain how this is done. <\/p>\n<p>In the article I will first show a quick example and then show some more detailed setting.<\/p>\n<p><!--more--><\/p>\n<h1><font style=\"font-weight: bold\">The basics<\/font><\/h1>\n<p>Before we can set the specific Session Printers settings we need to load the correct modules, connect to the GPO and read the Citrix user policy. These steps are the same as in the &#8211; <a href=\"https:\/\/ingmarverheij.com\/en\/set-citrix-policies-via-powershell\/\">Set Citrix policies via PowerShell<\/a> &#8211; article.<\/p>\n<pre lang=\"powershell\">#Import module\nImport-Module .\\Citrix.GroupPolicy.Commands\n\n#Connect PowerShell drive to Citrix domain GPO\nNew-PSDrive -Name CitrixGPO -PSProvider CitrixGroupPolicy -Root \\ -DomainGPO &quot;Citrix GPO&quot;\n\n#Read Citrix user policy\n$objCitrixPolicy = Get-CtxGroupPolicyConfiguration -PolicyName &quot;Unfiltered&quot; -Type user -DriveName CitrixGPO\n\n#Set session printers\n$objCitrixPolicy.(&quot;SessionPrinters&quot;).State = &quot;Enabled&quot;\n$objCitrixPolicy.(&quot;SessionPrinters&quot;).Values=@(&quot;\\\\DC001\\Printer1,model=HP LaserJet 4, color=1, location=&quot;;&quot;\\\\DC002\\Printer2, model=HP LaserJet 4, location=Second floor&quot;)\n\n#Write Citrix user policy\nSet-CtxGroupPolicyConfiguration $objCitrixPolicy -DriveName CitrixGPO\n\n#Close PowerShell Drive from Citrix domain GPO\nRemove-PSDrive -Name CitrixGPO<\/pre>\n<p>In the example above I added two printers: Printer1 and Printer2 which are both located on the server DC001. The result is shown below.<\/p>\n<p><a href=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Session-Printers.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Session Printers\" style=\"border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px\" border=\"0\" alt=\"Session Printers\" src=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Session-Printers_thumb.png\" width=\"354\" height=\"266\" \/><\/a><\/p>\n<p><i>In the example my GPO is called \u201cCitrix GPO\u201d and I\u2019m using the \u201cUnfiltered\u201d Citrix policy.<\/i><\/p>\n<h3>&#160;<\/h3>\n<p>&#160;<\/p>\n<h1><font style=\"font-weight: bold\">SessionPrinters Values<\/font><\/h1>\n<p>The syntax and the possible values for the setting \u201cSessionPrinters\u201d are not documented in the <a href=\"https:\/\/community.citrix.com\/display\/xa\/XenApp+6.5+Powershell+SDK\">XenApp 6.5 Powershell SDK<\/a> but their quite straightforward.<\/p>\n<p>&#160;<\/p>\n<p>In general there are two settings for each policy<\/p>\n<ul>\n<li><b>State <\/b>: Is the setting applied? Possible values are: NotConfigured, <b>Enabled<\/b>, UseDefault<b><\/b> <\/li>\n<li><b>Values<\/b>: A one-dimensional array containing a list of session printers. <b><\/b><\/li>\n<\/ul>\n<p><b><\/b><\/p>\n<h5><font style=\"font-weight: bold\"><br \/>\n    <br clear=\"all\" \/><\/p>\n<p>    <br clear=\"all\" \/>Session printer syntax<\/font><\/h5>\n<p>For each session printer one comma separated string is constructed with the following syntax<\/p>\n<p><i>&lt;URL&gt;,model=&lt;model&gt;(,location=&lt;location&gt;)(optional settings)<\/i><\/p>\n<p>Where <\/p>\n<ul>\n<li>&lt;URL&gt; is Server + Shared Name (for example \\\\DC001\\Printer1); <\/li>\n<li>&lt;model&gt; is the model name of the printer, or friendly name of the printer driver (for example HP LaserJet 4); <\/li>\n<li>&lt;location&gt; the location value of the shared printer (for example Second floor). <\/li>\n<\/ul>\n<p>The URL and model are <b>mandatory<\/b>, the location is optional.<\/p>\n<p><a href=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Session-Printers-Settings1.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Session Printers - Settings\" style=\"border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px\" border=\"0\" alt=\"Session Printers - Settings\" src=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Session-Printers-Settings_thumb1.png\" width=\"350\" height=\"293\" \/><\/a><\/p>\n<h6><font style=\"font-weight: bold\">Example<\/font><\/h6>\n<p>Two session printers are added: Printer1 and Printer2, both hosted on DC001 with the same printer driver (HP LaserJet 4). Printer2 has a location: Second floor:<\/p>\n<ul>\n<li>\\\\DC001\\Printer1,model=HP LaserJet 4, location= <\/li>\n<li>\\\\DC001\\Printer2,model=HP LaserJet 4, location=Second floor <\/li>\n<\/ul>\n<p>The following command can be issued from PowerShell<\/p>\n<pre lang=\"powershell\">$objCitrixPolicy.(&quot;SessionPrinters&quot;).Values=@(&quot;\\\\DC001\\Printer1,model=HP LaserJet 4, location=&quot;;&quot;\\\\DC002\\Printer2, model=HP LaserJet 4, location=Second floor&quot;)<\/pre>\n<p><b><\/b><\/p>\n<h5>&#160;<\/h5>\n<p>&#160;<\/p>\n<h3><font style=\"font-weight: bold\">Printer Settings <\/font><\/h3>\n<p>As you\u2019ve probably noticed in the example the settings for Printer1 are marked as <b>Modified<\/b>. For each session printer you have the ability to override printers settings like print quality, orientation, paper size, etc. Each setting is added to the same string as the URL, model and location and separated by a comma \u2018,\u2019. If no value is provided the printer setting is not configured (default).<\/p>\n<p>As mentioned before the possible values are not documented in the SDK so I\u2019ve documented them here.<\/p>\n<p>&#160;<\/p>\n<h4><font style=\"font-weight: bold\">Basic <\/font><\/h4>\n<p><a href=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Printer-Settings-Basic.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Printer Settings - Basic\" style=\"border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px\" border=\"0\" alt=\"Printer Settings - Basic\" src=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Printer-Settings-Basic_thumb.png\" width=\"350\" height=\"247\" \/><\/a><\/p>\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"696\" border=\"1\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"139\"><b>Printer Setting<\/b> <\/td>\n<td valign=\"top\" width=\"143\"><b>Member Name<\/b> <\/td>\n<td valign=\"top\" width=\"136\"><b>Value<\/b> <\/td>\n<td valign=\"top\" width=\"276\"><b>Description<\/b> <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">Override print quality <\/td>\n<td valign=\"top\" width=\"144\">printQuality <\/td>\n<td valign=\"top\" width=\"136\">-1 <\/td>\n<td valign=\"top\" width=\"275\">150dpi <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">-2 <\/td>\n<td valign=\"top\" width=\"275\">300dpi <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">-3 <\/td>\n<td valign=\"top\" width=\"275\">600dpi <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">-4 <\/td>\n<td valign=\"top\" width=\"275\">1200dpi <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">(numeric value) <\/td>\n<td valign=\"top\" width=\"275\">The provided value for custom horizontal <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">yResolution <\/td>\n<td valign=\"top\" width=\"136\">(numeric value) <\/td>\n<td valign=\"top\" width=\"275\">The provided value for custom Vertical (only when a value is provided for printQuality) <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">Override orientation <\/td>\n<td valign=\"top\" width=\"144\">orientation <\/td>\n<td valign=\"top\" width=\"136\">portrait <\/td>\n<td valign=\"top\" width=\"275\">Portrait <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">landscape <\/td>\n<td valign=\"top\" width=\"275\">Landscape <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">Override color <\/td>\n<td valign=\"top\" width=\"144\">color <\/td>\n<td valign=\"top\" width=\"136\">1 <\/td>\n<td valign=\"top\" width=\"275\">Monochrome <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">2 <\/td>\n<td valign=\"top\" width=\"275\">Color <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">Override duplex <\/td>\n<td valign=\"top\" width=\"144\">duplex <\/td>\n<td valign=\"top\" width=\"136\">1 <\/td>\n<td valign=\"top\" width=\"275\">Simplex <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">2 <\/td>\n<td valign=\"top\" width=\"275\">Vertical <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"140\">&#160;<\/td>\n<td valign=\"top\" width=\"144\">&#160;<\/td>\n<td valign=\"top\" width=\"136\">3 <\/td>\n<td valign=\"top\" width=\"275\">Horizontal <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4><font style=\"font-weight: bold\"><\/font><\/h4>\n<h4><font style=\"font-weight: bold\"><br \/>\n    <br clear=\"all\" \/><\/p>\n<p>    <br clear=\"all\" \/>Advanced <\/font><\/h4>\n<p><a href=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Printer-Settings-Advanced.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Printer Settings - Advanced\" style=\"border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px\" border=\"0\" alt=\"Printer Settings - Advanced\" src=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Printer-Settings-Advanced_thumb.png\" width=\"350\" height=\"210\" \/><\/a><\/p>\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"700\" border=\"1\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"170\"><b>Printer Setting<\/b> <\/td>\n<td valign=\"top\" width=\"187\"><b>Member Name<\/b> <\/td>\n<td valign=\"top\" width=\"165\"><b>Value<\/b> <\/td>\n<td valign=\"top\" width=\"176\"><b>Description<\/b> <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">Override scale <\/td>\n<td valign=\"top\" width=\"187\">scale <\/td>\n<td valign=\"top\" width=\"165\">(numeric value) <\/td>\n<td valign=\"top\" width=\"176\">The provided value in percentage (for instance 100 for 100%) <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">Override copy count <\/td>\n<td valign=\"top\" width=\"187\">copies <\/td>\n<td valign=\"top\" width=\"165\">(numeric value) <\/td>\n<td valign=\"top\" width=\"176\">The provided value is the number of copies <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">&#160;<\/td>\n<td valign=\"top\" width=\"187\">collate <\/td>\n<td valign=\"top\" width=\"165\">True \/ False <\/td>\n<td valign=\"top\" width=\"176\">Collation is enabled \/ disabled <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">Override TrueType option <\/td>\n<td valign=\"top\" width=\"187\">trueTypeOption <\/td>\n<td valign=\"top\" width=\"165\">1 <\/td>\n<td valign=\"top\" width=\"176\">Bitmap <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">&#160;<\/td>\n<td valign=\"top\" width=\"187\">&#160;<\/td>\n<td valign=\"top\" width=\"165\">2 <\/td>\n<td valign=\"top\" width=\"176\">Download <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">&#160;<\/td>\n<td valign=\"top\" width=\"187\">&#160;<\/td>\n<td valign=\"top\" width=\"165\">3 <\/td>\n<td valign=\"top\" width=\"176\">Substitute <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"170\">&#160;<\/td>\n<td valign=\"top\" width=\"187\">&#160;<\/td>\n<td valign=\"top\" width=\"165\">4 <\/td>\n<td valign=\"top\" width=\"176\">Outline <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>&#160;<\/p>\n<h4><font style=\"font-weight: bold\">Paper<\/font><\/h4>\n<p><i><\/i><\/p>\n<p><i><a href=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Printer-Settings-Paper.png\"><img loading=\"lazy\" decoding=\"async\" title=\"Printer Settings - Paper\" style=\"border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px\" border=\"0\" alt=\"Printer Settings - Paper\" src=\"https:\/\/ingmarverheij.com\/wp-content\/uploads\/2013\/07\/Printer-Settings-Paper_thumb.png\" width=\"350\" height=\"243\" \/><\/a>Either paper size of form name is overridden, you can\u2019t apply both<\/i> .<\/p>\n<table cellspacing=\"0\" cellpadding=\"0\" width=\"700\" border=\"1\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"171\"><b>Printer Setting<\/b> <\/td>\n<td valign=\"top\" width=\"180\"><b>Member Name<\/b> <\/td>\n<td valign=\"top\" width=\"163\"><b>Value<\/b> <\/td>\n<td valign=\"top\" width=\"184\"><b>Description<\/b> <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">Override paper size <\/td>\n<td valign=\"top\" width=\"180\">paperSize <\/td>\n<td valign=\"top\" width=\"163\">1 <\/td>\n<td valign=\"top\" width=\"184\">Letter <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">2 <\/td>\n<td valign=\"top\" width=\"184\">Letter Small <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">3 <\/td>\n<td valign=\"top\" width=\"184\">Tabloid <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">4 <\/td>\n<td valign=\"top\" width=\"184\">Ledger <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">5 <\/td>\n<td valign=\"top\" width=\"184\">Legal <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">6 <\/td>\n<td valign=\"top\" width=\"184\">Statement <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">7 <\/td>\n<td valign=\"top\" width=\"184\">Executive <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">8 <\/td>\n<td valign=\"top\" width=\"184\">A3 <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">9 <\/td>\n<td valign=\"top\" width=\"184\">A4 <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">&#160;<\/td>\n<td valign=\"top\" width=\"180\">&#160;<\/td>\n<td valign=\"top\" width=\"163\">(etc.) <\/td>\n<td valign=\"top\" width=\"184\">The number increments as it\u2019s shown in the dropdown box <\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"171\">Override form name <\/td>\n<td valign=\"top\" width=\"180\">formName <\/td>\n<td valign=\"top\" width=\"163\">(string value) <\/td>\n<td valign=\"top\" width=\"184\">The value provided in the value <\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><br clear=\"all\" \/><\/p>\n<p><br clear=\"all\" \/><\/p>\n<p><u><\/u><\/p>\n<h6><font style=\"font-weight: bold\">Example<\/font><\/h6>\n<p>Just like the previous example two session printers are added but in this example the settings for Printer1 are changed. The print quality is lowered to 300dpi, the colors are set to monochrome and the paper size to A4.<\/p>\n<ul>\n<li>\\\\DC001\\Printer1,model=HP LaserJet 4, printQuality=-2, color=1, paperSize=9, location= <\/li>\n<li>\\\\DC001\\Printer2,model=HP LaserJet 4, location=Second floor <\/li>\n<\/ul>\n<p>The following command can be issued from PowerShell<\/p>\n<div align=\"left\">\n<pre lang=\"powershell\">$objCitrixPolicy.(&quot;SessionPrinters&quot;).Values=@(&quot;\\\\DC001\\Printer1,model=HP LaserJet 4, printQuality=-2, color=1, paperSize=9, location=&quot;;&quot;\\\\DC002\\Printer2, model=HP LaserJet 4, location=Second floor&quot;)<\/pre>\n<\/div>\n<p>&#160;<\/p>\n<p>&#160;<\/p>\n<p>.<\/p>","protected":false},"excerpt":{"rendered":"<p>In a previous article I explained how you can set Citrix (domain) policies via PowerShell. In one of the comments I got a question from Tony who wanted to set Session Printers. In this article I\u2019ll explain how this is done. In the article I will first show a quick example and then show some [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"site-container-style":"default","site-container-layout":"default","site-sidebar-layout":"default","disable-article-header":"default","disable-site-header":"default","disable-site-footer":"default","disable-content-area-spacing":"default","footnotes":""},"categories":[152,305],"tags":[672,573,41],"class_list":["post-5210","post","type-post","status-publish","format-standard","hentry","category-powershell","category-xenapp-presentation-server","tag-powershell","tag-session-printers","tag-xenapp"],"_links":{"self":[{"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/posts\/5210","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/comments?post=5210"}],"version-history":[{"count":10,"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/posts\/5210\/revisions"}],"predecessor-version":[{"id":5228,"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/posts\/5210\/revisions\/5228"}],"wp:attachment":[{"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/media?parent=5210"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/categories?post=5210"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ingmarverheij.com\/en\/wp-json\/wp\/v2\/tags?post=5210"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}