• 0 Votes
    1 Posts
    186 Views
    No one has replied
  • API-Suche nach it service relations für Kabel

    Entwicklung
    5
    0 Votes
    5 Posts
    402 Views
    huH

    @StephanBuerger said in API-Suche nach it service relations für Kabel:

    @hu Was soll der "push nach vorn"?

    Das mag niemand in einem Forum

    ... das ist mir absolut neu bei Foren. Tut mir leid dass Dich das stört. Ich mache dies bereits seit Jahrzehnten so und Du bist der erste der sich beschwert. Falls Du diesbezüglich einen netiquette Hinweis im Netz findest, kannst du ihn gerne posten, ich bin nicht fündig geworden.

    Ich würde mich weiterhin freuen, wenn jemand eine Idee zu meinem Problem hat.

  • API, get person with person groups

    General
    3
    0 Votes
    3 Posts
    388 Views
    Michael HuhnM

    Hey @Eduardo-Casarero

    youre JSon is correct but if you get categories =[] then it seems like a bug.
    There is actually a open bug with these categories:

    "C__CATS__PERSON_GROUP_MASTER", "C__CATS__PERSON_CONTACT_ASSIGNMENT", "C__CATS__PERSON_GROUP_MEMBERS", "C__CATS__ORGANIZATION_PERSONS", "C__CATS__PERSON_ASSIGNED_GROUPS"

    So you need to use the category.read method like @fa__ described.

  • Auslesen Field title über Field Identifier mittels der API

    Allgemein
    3
    0 Votes
    3 Posts
    290 Views
    R

    Danke für den Hinweis auf cmdb.category_info.read, die ist in der aktuellen Dokumentation (nicht der als veraltet deklarierten PDF) nicht mehr aufgelistet. Den Title eines Feldes anhand des Identifier so auszulesen funktioniert zwar, jedoch muss dafür die komplette Kategorie abgerufen und dann über das Rückgabeobjekt iteriert werden, um auf den Title zu kommen, nicht wirklich die effizienteste Art und Weise.

    Weiterhin beim eingangs beschriebenen Beispiel bleibend würde es ungefähr folgendermaßen ablaufen, um bei bekanntem Feld Identifier c_1581951179201 und Category Constant C__CATG__CUSTOM_FIELDS_BISRTE_OPENSHIFT den Feld Title TESTFIELD auszulesen:

    Abfrage:

    { 'version' => '2.0', 'id' => '861877', 'params' => { 'category' => 'C__CATG__CUSTOM_FIELDS_BISRTE_OPENSHIFT', 'apikey' => '<apikey>' }, 'method' => 'cmdb.category_info.read' }

    Rückgabeobjekt (3000 Zeilen, verkürzt zur besseren Lesbarkeit) :

    { 'f_text_c_1581615851723' => { 'check' => { 'mandatory' => bless( do{\(my $o = 0)}, 'JSON::PP::Boolean' ) }, 'info' => { 'type' => 'text', 'title' => 'W4B_URL', 'backward' => do{my $o}, 'primary_field' => do{my $o}, 'description' => 'f_text' }, 'title' => 'W4B_URL', 'ui' => { 'default' => undef, 'params' => { 'visibility' => 'visible', 'type' => 'f_text', 'title' => 'W4B_URL', 'p_nMaxLen' => 255, 'show_in_list' => 1 }, 'id' => 'c_1581615851723', 'type' => 'text' }, 'data' => { 'field_alias' => 'f_text_c_1581615851723', 'readonly' => do{my $o}, 'index' => do{my $o}, 'type' => 'text', 'field' => 'isys_catg_custom_fields_list__field_content', 'select' => {} } }, [...] 'f_text_c_1581951179201' => { 'info' => { 'backward' => do{my $o}, 'primary_field' => do{my $o}, 'description' => 'f_text', 'type' => 'text', 'title' => 'TESTFIELD' }, 'title' => 'TESTFIELD', 'ui' => { 'id' => 'c_1581951179201', 'params' => { 'type' => 'f_text', 'visibility' => 'visible', 'title' => 'TESTFIELD', 'p_nMaxLen' => 255, 'show_in_list' => 1 }, 'type' => 'text', 'default' => undef }, 'data' => { 'field' => 'isys_catg_custom_fields_list__field_content', 'select' => {}, 'field_alias' => 'f_text_c_1581951179201', 'readonly' => do{my $o}, 'index' => do{my $o}, 'type' => 'text' }, 'check' => { 'mandatory' => do{my $o} } }, 'f_text_c_1581615920674' => { 'ui' => { 'params' => { 'title' => 'NORM_HTTP_ACTIVE', 'p_nMaxLen' => 255, 'visibility' => 'visible', 'type' => 'f_text', 'show_in_list' => 1 }, 'id' => 'c_1581615920674', 'type' => 'text', 'default' => undef }, 'data' => { 'select' => {}, 'field' => 'isys_catg_custom_fields_list__field_content', 'index' => do{my $o}, 'readonly' => do{my $o}, 'type' => 'text', 'field_alias' => 'f_text_c_1581615920674' }, 'info' => { 'type' => 'text', 'title' => 'NORM_HTTP_ACTIVE', 'backward' => do{my $o}, 'primary_field' => do{my $o}, 'description' => 'f_text' }, 'title' => 'NORM_HTTP_ACTIVE', 'check' => { 'mandatory' => do{my $o} } }, [...] }

    Perl Schleife zum Auslesen des Title Felds, welches zum Identifier gehört ($callobjectfieldname entspricht dem oben gezeigten Abfrage-Objekt):

    my $fields = $client->call($uri, $callobjfieldname); while(my($key, $value) = each (%{ $fields->result })) { if ($fieldconstname =~ m/$key/ ){ return $value->{'title'}; } }

    Sehr viel Aufwand, um ein Attribute für eine bekannten Category Constant, Field Identifier Kombination auszulesen, obwohl jede von diesen Kombinationen zwingend unique ist und somit eine Abfrage mit beiden als Parameter direkt das Feld ansteuern und eine Menge Arbeit vermeiden könnte. Gibt es da wirklich keinen anderen Weg als den hier aufgezeigten?

  • API add-on bug with password CATG

    Development
    2
    0 Votes
    2 Posts
    562 Views
    Philipp HörselmannP

    Hey,
    unfortunately nobody answered yet...
    Thank you for the hint.
    Best
    Phil