{"id":2539,"date":"2023-07-10T13:09:45","date_gmt":"2023-07-10T13:09:45","guid":{"rendered":"https:\/\/www.2ba.nl\/?p=2539"},"modified":"2023-07-13T13:13:45","modified_gmt":"2023-07-13T13:13:45","slug":"parameters-filter","status":"publish","type":"post","link":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/","title":{"rendered":"Parameters filter"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Unifeed &#8211; Parameters filter<\/h1>\n\n\n\n<p>Text only available in english<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Supplying Filter as part of the parameters in the adress bar<\/h4>\n\n\n\n<p>A part of the parameters that can be supplied via the address bar, is the <strong>filter<\/strong> object. By supplying the filter when starting Unifeed, all following searches will be executed within the context of this filter. The format of the filter is a JSON string. All parameters have to be URL-encoded, the filter object is no exception.<\/p>\n\n\n\n<p>Because the filter object offers extended options, it is described separately below.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Structure<\/h4>\n\n\n\n<p>De structure of the filter wrapper object is&nbsp;&nbsp;<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nclass wrapper {\n\t\tpublic filters: Array&amp;lt;Filter&gt;;\n\t\tpublic query: string;\n}\n\nclass Filter {\n\t\tpublic id: string; \n\t\tpublic name: string;\n\t\tpublic type: string;\n\t\tpublic values: Array&amp;lt;IValue&gt;;\n\t\tpublic hidden: boolean;\n}\n\ninterface IValue {\n\t\tid: string;\n\t\tname: string;\n\t}\n\nclass ValueA implements IValue {\n\t\tpublic id: string;\n\t\tpublic name: string;\n\t}\n\nclass ValueN implements IValue {\n\t\tpublic id: string;\n\t\tpublic name: string;\n\t\tpublic min: number;\n\t\tpublic max: number;\n\t}\n\nclass ValueR implements IValue {\n\t\tpublic id: string;\n\t\tpublic name: string;\n\t\tpublic rangevalue: number;\n\t}\n\n\n<\/pre><\/div>\n\n\n<p>&nbsp;A list of all possible filter types<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><thead><tr><th>Filter type&nbsp;<\/th><th>Description<\/th><th>Example<\/th><\/tr><\/thead><tbody><tr><td>class<\/td><td>\n<p>Filter by one or more classes (ETIM classes, EC*)<br>Filter values are of type A(lphanumeric)<\/p>\n<p>filter.type=&#8221;class&#8221;<br>filter.name=&#8221;class&#8221;<br>value.id=EC-code<br>value.name=EC-name<\/p>\n<\/td><td>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;class&#8221;,&#8221;name&#8221;:&#8221;Klasse&#8221;,&#8221;type&#8221;:&#8221;class&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;EC000188&#8243;,&#8221;name&#8221;:&#8221;Bistabiel relais&#8221;},{&#8220;id&#8221;:&#8221;EC000196&#8243;,&#8221;name&#8221;:&#8221;Hulprelais&#8221;}]}]}<\/td><\/tr><tr><td>featureA<\/td><td>\n<p>Filter by Alphanumeric features (ETIM features, EF*, type A)<br>Filter values are of type A(lphanumeric)<\/p>\n<p><span lang=\"EN-GB\" style=\"font-size: 9.5pt; line-height: 13.5533332824707px; font-family: Consolas; color: blue; background-image: initial; background-attachment: initial; background-position: initial; background-repeat: initial;\"><span style=\"color: #000000; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px;\">filter.type=&#8221;<span style=\"line-height: 13.5533332824707px;\">featureA<\/span>&#8220;<br>filter.id=EF-code<br>filter.name=EF-name<br>value.id=EV-code<br>value.name=EV-name<\/span><\/span><\/p>\n<\/td><td>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;EF000007&#8243;,&#8221;name&#8221;:&#8221;Kleur&#8221;,&#8221;type&#8221;:&#8221;featureA&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;EV000233&#8243;,&#8221;name&#8221;:&#8221;Rood&#8221;},{&#8220;id&#8221;:&#8221;EV000119&#8243;,&#8221;name&#8221;:&#8221;Goud&#8221;}]}]}<\/td><\/tr><tr><td>featureN<\/td><td>\n<p>Filter by Numeric features (ETIM features, EF*, type N).&nbsp;<br>Filter values are of type N(umeric)<\/p>\n<p>filter.type=&#8221;featureN&#8221;<br>filter.id=EF-code<br>filter.name=EF-name<br>value.name=min-max<br>value.min=number<br>value.max=number&nbsp;<\/p>\n<\/td><td>filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;EF000035&#8243;,&#8221;name&#8221;:&#8221;Lampvermogen&#8221;,&#8221;type&#8221;:&#8221;featureN&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;x&#8221;,&#8221;name&#8221;:&#8221;0 &#8211; 100&#8243;, &#8220;min&#8221;:&#8221;0&#8243;, &#8220;max&#8221;:&#8221;100&#8243;}]}]}<\/td><\/tr><tr><td>featureR<\/td><td>\n<p>Filter by Range features (ETIM features, EF*, type R).&nbsp;<br>Filter values are of type R(ange)<\/p>\n<p>filter.type=&#8221;featureR&#8221;<br>filter.id=EF-code<br>filter.name=EF-name<br>value.name=rangevalue<br>value.rangevalue=number<\/p>\n<\/td><td>filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;EF000280&#8243;,&#8221;name&#8221;:&#8221;Geschikt voor lampvermogen&#8221;,&#8221;type&#8221;:&#8221;featureR&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;x&#8221;,&#8221;name&#8221;:&#8221;25.00&#8243;, &#8220;rangevalue&#8221;:&#8221;25.00&#8243;}]}]}<\/td><\/tr><tr><td>&nbsp;<\/td><td>&nbsp;<\/td><td>&nbsp;<\/td><\/tr><tr><td>manufacture<\/td><td>\n<p>Filter by manufacture<\/p>\n<p>filter.type=&#8221;manufacture&#8221;<br>filter.name=&#8221;Manufacture&#8221;<br>value.id=manufacture<br>value.name=manufacture<\/p>\n<\/td><td>\n<p>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;manufacture&#8221;,&#8221;name&#8221;:&#8221;Manufacture&#8221;,&#8221;type&#8221;:&#8221;manufacture&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;PHILIPS&#8221;,&#8221;name&#8221;:&#8221;PHILIPS&#8221;}]}]}<\/p>\n<p>&nbsp;<\/p>\n<\/td><\/tr><tr><td>model<\/td><td>\n<p>Filter by model \/ serie<\/p>\n<p>filter.type=&#8221;model&#8221;<br>filter.name=&#8221;Serie&#8221;<br>value.id=model<br>value.name=model<\/p>\n<\/td><td>\n<p>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;model&#8221;,&#8221;name&#8221;:&#8221;Serie&#8221;,&#8221;type&#8221;:&#8221;model&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;CleanRoom&#8221;,&#8221;name&#8221;:&#8221;CleanRoom&#8221;}]}]}<\/p>\n<p>&nbsp;<\/p>\n<\/td><\/tr><tr><td>type&nbsp;<\/td><td>\n<p>Filter by type<\/p>\n<p>filter.type=&#8221;type&#8221;<br>filter.name=&#8221;Type&#8221;<br>value.id=type<br>value.name=type<\/p>\n<\/td><td>\n<p>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;type&#8221;,&#8221;name&#8221;:&#8221;Type&#8221;,&#8221;type&#8221;:&#8221;type&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;CR200B414GTL65&#8243;,&#8221;name&#8221;:&#8221;CR200B414GTL65&#8243;}]}]}<\/p>\n<p>&nbsp;<\/p>\n<\/td><\/tr><tr><td>&nbsp;<\/td><td>&nbsp;<\/td><td>&nbsp;<\/td><\/tr><tr><td>sgln&nbsp;<\/td><td>\n<p>Filter by supplier (GLN)<\/p>\n<p>filter.type=&#8221;sgln&#8221;<br>filter.name=&#8221;Supplier&#8221;<br>value.id=leveranciersGLN<br>value.name=leveranciersNaam<\/p>\n<\/td><td>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;sgln&#8221;,&#8221;name&#8221;:&#8221;Supplier&#8221;,&#8221;type&#8221;:&#8221;sgln&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;8711389000001&#8243;,&#8221;name&#8221;:&#8221;Technische Unie&#8221;},{&#8220;id&#8221;:&#8221;8711891990012&#8243;,&#8221;name&#8221;:&#8221;Solar Nederland&#8221;},{&#8220;id&#8221;:&#8221;8714253035000&#8243;,&#8221;name&#8221;:&#8221;Oosterberg&#8221;},{&#8220;id&#8221;:&#8221;8714253038261&#8243;,&#8221;name&#8221;:&#8221;Finder&#8221;}]}]}<\/td><\/tr><tr><td>&nbsp;<\/td><td>&nbsp;<\/td><td>&nbsp;<\/td><\/tr><tr><td>expired<\/td><td>\n<p>Searching expired products<\/p>\n<p>filter.type=&#8221;expired&#8221;<br>filter.name=&#8221;Expired products&#8221;<br>value.id=true\/false<br>value.name=YES\/NO<\/p>\n<\/td><td>&nbsp;filter={&#8220;filters&#8221;:[{&#8220;id&#8221;:&#8221;expired&#8221;,&#8221;name&#8221;:&#8221;Expired products&#8221;,&#8221;type&#8221;:&#8221;expired&#8221;,&#8221;values&#8221;:[{&#8220;id&#8221;:&#8221;true&#8221;,&#8221;name&#8221;:&#8221;YES&#8221;}]}]}<\/td><\/tr><tr><td>&nbsp;<\/td><td>&nbsp;<\/td><td>&nbsp;<\/td><\/tr><\/tbody><\/table><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Unifeed &#8211; Parameters filter Text only available in english Supplying Filter as part of the parameters in the adress bar A part of the parameters that can be supplied via the address bar, is the filter object. By supplying the filter when starting Unifeed, all following searches will be executed within the context of this [&hellip;]<\/p>\n","protected":false},"author":11,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","footnotes":""},"categories":[112],"tags":[],"class_list":["post-2539","post","type-post","status-publish","format-standard","hentry","category-parameters-en"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Parameters filter - 2ba<\/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:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Parameters filter - 2ba\" \/>\n<meta property=\"og:description\" content=\"Unifeed &#8211; Parameters filter Text only available in english Supplying Filter as part of the parameters in the adress bar A part of the parameters that can be supplied via the address bar, is the filter object. By supplying the filter when starting Unifeed, all following searches will be executed within the context of this [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\" \/>\n<meta property=\"og:site_name\" content=\"2ba\" \/>\n<meta property=\"article:published_time\" content=\"2023-07-10T13:09:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-13T13:13:45+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/2ba.wimwillems.nl\/wp-content\/uploads\/2023\/06\/2BA_logo_RGB.png\" \/>\n\t<meta property=\"og:image:width\" content=\"211\" \/>\n\t<meta property=\"og:image:height\" content=\"95\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"2ba\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"2ba\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\"},\"author\":{\"name\":\"2ba\",\"@id\":\"https:\/\/2ba.wimwillems.nl\/#\/schema\/person\/e38a7da4ab5c525bc5ff65c2f9f29412\"},\"headline\":\"Parameters filter\",\"datePublished\":\"2023-07-10T13:09:45+00:00\",\"dateModified\":\"2023-07-13T13:13:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\"},\"wordCount\":484,\"commentCount\":0,\"articleSection\":[\"Parameters\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\",\"url\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\",\"name\":\"Parameters filter - 2ba\",\"isPartOf\":{\"@id\":\"https:\/\/2ba.wimwillems.nl\/#website\"},\"datePublished\":\"2023-07-10T13:09:45+00:00\",\"dateModified\":\"2023-07-13T13:13:45+00:00\",\"author\":{\"@id\":\"https:\/\/2ba.wimwillems.nl\/#\/schema\/person\/e38a7da4ab5c525bc5ff65c2f9f29412\"},\"breadcrumb\":{\"@id\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/2ba.wimwillems.nl\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Parameters filter\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/2ba.wimwillems.nl\/#website\",\"url\":\"https:\/\/2ba.wimwillems.nl\/\",\"name\":\"2ba\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/2ba.wimwillems.nl\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/2ba.wimwillems.nl\/#\/schema\/person\/e38a7da4ab5c525bc5ff65c2f9f29412\",\"name\":\"2ba\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/98fd787799f599e7136207ddae02d3ff6c5d346317929a6e3bac964389f20320?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/98fd787799f599e7136207ddae02d3ff6c5d346317929a6e3bac964389f20320?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/98fd787799f599e7136207ddae02d3ff6c5d346317929a6e3bac964389f20320?s=96&d=mm&r=g\",\"caption\":\"2ba\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Parameters filter - 2ba","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:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/","og_locale":"en_US","og_type":"article","og_title":"Parameters filter - 2ba","og_description":"Unifeed &#8211; Parameters filter Text only available in english Supplying Filter as part of the parameters in the adress bar A part of the parameters that can be supplied via the address bar, is the filter object. By supplying the filter when starting Unifeed, all following searches will be executed within the context of this [&hellip;]","og_url":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/","og_site_name":"2ba","article_published_time":"2023-07-10T13:09:45+00:00","article_modified_time":"2023-07-13T13:13:45+00:00","og_image":[{"width":211,"height":95,"url":"https:\/\/2ba.wimwillems.nl\/wp-content\/uploads\/2023\/06\/2BA_logo_RGB.png","type":"image\/png"}],"author":"2ba","twitter_card":"summary_large_image","twitter_misc":{"Written by":"2ba","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#article","isPartOf":{"@id":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/"},"author":{"name":"2ba","@id":"https:\/\/2ba.wimwillems.nl\/#\/schema\/person\/e38a7da4ab5c525bc5ff65c2f9f29412"},"headline":"Parameters filter","datePublished":"2023-07-10T13:09:45+00:00","dateModified":"2023-07-13T13:13:45+00:00","mainEntityOfPage":{"@id":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/"},"wordCount":484,"commentCount":0,"articleSection":["Parameters"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/","url":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/","name":"Parameters filter - 2ba","isPartOf":{"@id":"https:\/\/2ba.wimwillems.nl\/#website"},"datePublished":"2023-07-10T13:09:45+00:00","dateModified":"2023-07-13T13:13:45+00:00","author":{"@id":"https:\/\/2ba.wimwillems.nl\/#\/schema\/person\/e38a7da4ab5c525bc5ff65c2f9f29412"},"breadcrumb":{"@id":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/2ba.wimwillems.nl\/en\/documentation\/unifeed\/parameters\/parameters-filter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/2ba.wimwillems.nl\/en\/"},{"@type":"ListItem","position":2,"name":"Parameters filter"}]},{"@type":"WebSite","@id":"https:\/\/2ba.wimwillems.nl\/#website","url":"https:\/\/2ba.wimwillems.nl\/","name":"2ba","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/2ba.wimwillems.nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/2ba.wimwillems.nl\/#\/schema\/person\/e38a7da4ab5c525bc5ff65c2f9f29412","name":"2ba","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/98fd787799f599e7136207ddae02d3ff6c5d346317929a6e3bac964389f20320?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/98fd787799f599e7136207ddae02d3ff6c5d346317929a6e3bac964389f20320?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/98fd787799f599e7136207ddae02d3ff6c5d346317929a6e3bac964389f20320?s=96&d=mm&r=g","caption":"2ba"}}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"gform-image-choice-sm":false,"gform-image-choice-md":false,"gform-image-choice-lg":false},"uagb_author_info":{"display_name":"2ba","author_link":"https:\/\/2ba.wimwillems.nl\/en\/author\/2ba\/"},"uagb_comment_info":0,"uagb_excerpt":"Unifeed &#8211; Parameters filter Text only available in english Supplying Filter as part of the parameters in the adress bar A part of the parameters that can be supplied via the address bar, is the filter object. By supplying the filter when starting Unifeed, all following searches will be executed within the context of this&hellip;","_links":{"self":[{"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/posts\/2539","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/users\/11"}],"replies":[{"embeddable":true,"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/comments?post=2539"}],"version-history":[{"count":2,"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/posts\/2539\/revisions"}],"predecessor-version":[{"id":2658,"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/posts\/2539\/revisions\/2658"}],"wp:attachment":[{"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/media?parent=2539"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/categories?post=2539"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2ba.wimwillems.nl\/en\/wp-json\/wp\/v2\/tags?post=2539"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}