<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Get all items from field]]></title><description><![CDATA[<p dir="auto">Hi Guys,</p>
<p dir="auto">I am trying to get all objects from  "category": "C__CATG__OPERATING_SYSTEM". But i am not getting the correct information.I am trying to get the list of all objects in the category in the Operating system.</p>
<p dir="auto">Adding data to the cmdb is not a problem, but getting the right information is.</p>
<p dir="auto">This is the code that I am using :</p>
<pre><code>{
	"version": "2.0",
	"method": "cmdb.dialog.read",
	"params": { 
		"apikey": "2i30sgvmvp",
		 "category": "C__CATG__OPERATING_SYSTEM",
		 "property": "application_type"
	},
	"ID": ""
}
</code></pre>
<p dir="auto">This is the result.</p>
<pre><code>{
    "jsonrpc": "2.0",
    "result": [
        {
            "id": "1",
            "const": "C__CATG__APPLICATION_TYPE__SOFTWARE",
            "title": "Software"
        },
        {
            "id": "2",
            "const": "C__CATG__APPLICATION_TYPE__OPERATING_SYSTEM",
            "title": "Operating system"
        }
    ],
    "id": null
}
</code></pre>
<p dir="auto">The documentation is in German and is not written to well....</p>
]]></description><link>https://community.i-doit.com/topic/3403/get-all-items-from-field</link><generator>RSS for Node</generator><lastBuildDate>Wed, 10 Jun 2026 12:30:19 GMT</lastBuildDate><atom:link href="https://community.i-doit.com/topic/3403.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 24 May 2018 07:07:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Get all items from field on Fri, 25 May 2018 07:04:18 GMT]]></title><description><![CDATA[<p dir="auto">I found it how to get all times with the following code:</p>
<pre><code>{
	"version": "2.0",
	"method": "cmdb.objects.read",
	"params": { 
		"filter": {
			"type_title": "LC__OBJTYPE__OPERATING_SYSTEM"
		},
	    "apikey": "2i30sgvmvl",
	    "sort": "ASC"
	    
		},
	"id": "1"
	
}
</code></pre>
]]></description><link>https://community.i-doit.com/post/13412</link><guid isPermaLink="true">https://community.i-doit.com/post/13412</guid><dc:creator><![CDATA[denniswoot]]></dc:creator><pubDate>Fri, 25 May 2018 07:04:18 GMT</pubDate></item></channel></rss>