Namespace cmdb.categories#
Work in Progress
cmdb.categories.read#
To retrieve multiple categories with a single request, you should use the method cmdb.categories.read. As mentioned above, it is helpful to use cmdb.object_type_categories in advance to obtain the available catgID (global categories) and catsID (specific categories).
Request parameters#
| Key | JSON data type | Required | Description |
|---|---|---|---|
| objID | Integer | Yes | ID of the object |
| catgID | Integer | No | catgid of a category, can be retrieved via cmdb.object_type_categories |
| catsID | Integer | No | catsid of a category, can be retrieved via cmdb.object_type_categories |
WIP
Response parameters#
JSON key result contains an array of JSON objects. Each object contains a search result.
| Key | JSON data type | Description |
|---|---|---|
| Placeholder | Placeholder | Placeholder |
| Placeholder | Placeholder | Placeholder |
Example#
1 2 3 4 5 6 7 8 9 10 11 12 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |