Untergeordnete Seiten (Anzeige untergeordneter Seiten) |
---|
Seitenverzeichnis:
Inhalt | ||||||
---|---|---|---|---|---|---|
|
...
shd.object.duplicate
Beschreibung
Ist eine Hilfsfunktion zum duplizieren von Objekten.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"method": "shd.object.duplicate",
"params": {
"apikey": "1ialbgclm9",
"id": [
"736",
"741",
"1272"
],
"category": [
"1",
"89",
"145",
"146",
"147",
"149",
"135",
"136"
],
"export_specific_catg": "on",
"custom_category": [
"8"
],
"update_globals": "1",
"object_title": "new Title",
"duplicate_options": "0",
"language": "en"
},
"id": 1,
"version": "2.0"
} |
Beispielantwort
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"jsonrpc": "2.0",
"result": {
"success": true,
"response": {
"imported": [
"5147",
"5148",
"5149"
]
},
"message": null
},
"id": 1
} |
Parameter
Parameter | Typ | Beschreibung | Version |
---|---|---|---|
id | int | ab Version 1.0 | |
category | int | ab Version 1.0 | |
export_specific_catg | string | ab Version 1.0 | |
custom_category | string | ab Version 1.0 | |
update_globals | int | ab Version 1.0 | |
object_title | string | ab Version 1.0 | |
duplicate_options | bool | ab Version 1.0 |
Rückgabewert
Wert | Typ | Beschreibung | Version |
---|---|---|---|
succes | bool | ab Version 1.0 | |
response | array | ab Version 1.0 | |
message | string | ab Version 1.0 |
...
shd.object.relation
Beschreibung
Gibt alle Objekte zurück die in einer Beziehung zum angegebenen Objekt stehen.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"method": "shd.object.relation",
"params": {
"apikey": "1ialbgclm9",
"ObjId": "583",
"down_lvl": "1",
"up_lvl": "1",
"columns": {
"C__OBJTYPE__ALL": [
{
"id": "C__CATG__GLOBAL-title"
},
{
"id": "C__CATG__GLOBAL-description"
},
{
"id": "C__CATG__GLOBAL-status"
},
{
"id": "C__CATG__CPU-frequency"
}
],
"C__OBJTYPE__SERVER": [
{
"id": "C__CATG__CPU-frequency"
}
]
},
"language": "en"
},
"id": 1,
"version": "2.0"
} |
Beispielantwort
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"jsonrpc": "2.0",
"result": {
"33": {
"data": {
"isys_obj__id": "584",
"isys_obj__title": "ACME Headquarter (HQ) ist Standort von 1.11 Copy Room",
"isys_obj_type__id": "60",
"isys_obj_type__title": "Gebäude",
"isys_catg_relation_list__isys_obj__id__master": "33",
"isys_catg_relation_list__isys_obj__id__slave": "583",
"isys_catg_relation_list__isys_obj__id": "584",
"related": "33",
"related_title": "ACME Headquarter (HQ)",
"related_type_title": "Gebäude",
"related_type": "3",
"related_cmdb_status_id": null,
"related_cmdb_status_title": "In Betrieb",
"up_lvl": 1,
"category": {
"C__CATG__GLOBAL-title": "ACME Headquarter (HQ)",
"C__CATG__GLOBAL-description": "",
"C__CATG__GLOBAL-status": "Normal"
}
},
"children": false
},
"237": {
"data": {
"isys_obj__id": "586",
"isys_obj__title": "IT Operations wird benutzt von 1.11 Copy Room",
"isys_obj_type__id": "60",
"isys_obj_type__title": "Personengruppen",
"isys_catg_relation_list__isys_obj__id__master": "237",
"isys_catg_relation_list__isys_obj__id__slave": "583",
"isys_catg_relation_list__isys_obj__id": "586",
"related": "237",
"related_title": "IT Operations",
"related_type_title": "Personengruppen",
"related_type": "54",
"related_cmdb_status_id": null,
"related_cmdb_status_title": "In Betrieb",
"up_lvl": 1,
"category": {
"C__CATG__GLOBAL-title": "IT Operations",
"C__CATG__GLOBAL-description": "",
"C__CATG__GLOBAL-status": "Normal"
}
},
"children": false
},
[…]
},
"id": 1
} |
Parameter
Parameter | Typ | Beschreibung | Version |
---|---|---|---|
ObjID | string | ID des Objektes | ab Version 1.0 |
down_lvl | string | Die Anzahl der Elemente des Views | ab Version 1.0 |
up_lvl | string | Die Anzahl der Elemente des Views | ab Version 1.0 |
columns | array | ab Version 1.0 | |
process_id | int | Kann gesetzt werden um den Prozess später abzubrechen | ab Version 1.0 |
Rückgabewert
Wert | Typ | Beschreibung | Version |
---|---|---|---|
array | Ein Array von Objekt-Typen | ab Version 1.0 |
...
shd.object.relationfast
Beschreibung
Gibt alle Objekte zurück die in einer Beziehung zum angegebenen Objekt stehen.
Beispielaufruf
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"method": "shd.object.relation",
"params": {
"apikey": "1ialbgclm9",
"ObjId": "583",
"down_lvl": "1",
"up_lvl": "1",
"columns": {
"C__OBJTYPE__ALL": [
{
"id": "C__CATG__GLOBAL-title"
},
{
"id": "C__CATG__GLOBAL-description"
},
{
"id": "C__CATG__GLOBAL-status"
},
{
"id": "C__CATG__CPU-frequency"
}
],
"C__OBJTYPE__SERVER": [
{
"id": "C__CATG__CPU-frequency"
}
]
},
"language": "en"
},
"id": 1,
"version": "2.0"
} |
Beispielantwort
Codeblock | ||||
---|---|---|---|---|
| ||||
{
"jsonrpc":"2.0",
"result":{
"583":{
"data":{
"related_title":"1.11 Copy Room",
"related_type_title":"Raum",
"isys_obj_type__title":"Raum",
"related_type":"26",
"related_cmdb_status_id":null,
"related_cmdb_status_title":"In Betrieb",
"related":"583",
"category":{
"C__CATG__GLOBAL-title":"1.11 Copy Room",
"C__CATG__GLOBAL-description":"",
"C__CATG__GLOBAL-status":"Normal"
}
},
"children":false
},
"33":{
"data":{
"isys_obj__id":"584",
"isys_obj__title":"ACME Headquarter (HQ) ist Standort von 1.11 Copy Room",
"isys_obj_type__id":"60",
"isys_obj_type__title":"Geb\u00e4ude",
"isys_catg_relation_list__isys_obj__id__master":"33",
"isys_catg_relation_list__isys_obj__id__slave":"583",
"isys_catg_relation_list__isys_obj__id":"584",
"related":"33",
"related_title":"ACME Headquarter (HQ)",
"related_type_title":"Geb\u00e4ude",
"related_type":"3",
"related_cmdb_status_id":null,
"related_cmdb_status_title":"In Betrieb",
"up_lvl":1,
"category":{
"C__CATG__GLOBAL-title":"ACME Headquarter (HQ)",
"C__CATG__GLOBAL-description":"",
"C__CATG__GLOBAL-status":"Normal"
}
},
"children":false
},
[…]
},
"id":1
} |
Parameter
Parameter | Typ | Beschreibung | Version |
---|---|---|---|
ObjID | string | ID des Objektes | ab Version 1.0 |
down_lvl | string | Die Anzahl der Elemente des Views | ab Version 1.0 |
up_lvl | string | Die Anzahl der Elemente des Views | ab Version 1.0 |
columns | array | ab Version 1.0 | |
process_id | int | Kann gesetzt werden um den Prozess später abzubrechen | ab Version 1.0 |
Rückgabewert
Wert | Typ | Beschreibung | Version |
---|---|---|---|
array | Ein Array von Objekt-Typen | ab Version 1.0 |