Community
    • Categories
    • Recent
    • Popular
    • Users
    • Search
    • Register
    • Login
    1. Home
    2. mike.vogel
    M
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 3
    • Groups 0

    mike.vogel

    @mike.vogel

    0
    Reputation
    193
    Profile views
    3
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online
    Age 33
    Website www.i-doit.com/
    Location Germany

    mike.vogel Unfollow Follow

    Latest posts made by mike.vogel

    • RE: Category from host

      Hey @denniswoot !

      Our API documentation can be found in the following article of our Knowledge Base:
      https://kb.i-doit.com/pages/viewpage.action?pageId=37355644

      The method cmdb.object.read, which you used for your calls, gives you general information about the called object.
      To get further information about any category you want, use cmdb.category.read instead.
      Following you'll find a request which should show you information about the category host

      {
          "version": "2.0",
          "method": "cmdb.category.read",
          "params": {
              "objID": 22275,
              "catgID": "C__CATG__IP",
              "apikey": "YOUR_API_KEY_HERE",
              "language": "en"
          },
          "id": 1
      }
      

      To update category entries within the host address category, you'd have to use the method cmdb.category.update.
      The used "id" in the following statement is part of the result set you'll get when using cmdb.category.read on an object:

      {
          "version": "2.0",
          "method": "cmdb.category.update",
          "params": {
              "objID": 22275,
            "data": {
              "id": 180, 
              "ipv4_address": "10.100.20.225"
              },
              "catgID": "C__CATG__IP",
              "apikey": "YOUR_API_KEY_HERE",
              "language": "en"
          },
          "id": 1
      }
      

      You can find every attribute with it's usable keys and field types via the following link:
      http://YOUR_HOST_HERE/?load=api_properties

      Please not that you have to change the host address in the link to access the data.

      If there are any further questions, please do not hesitate to contact us!

      posted in Development
      M
      mike.vogel
    • RE: Feld Anschlussart verschwunden (1.8/1.8.1)

      Hallo Lydia,

      die Spalte Anschlussart ist tatsächlich in Versionen 1.8 bis 1.9.1 nicht vorhanden, wird aber in der kommenden Version 1.9.2 wieder vorhanden sein.

      posted in Betrieb
      M
      mike.vogel
    • RE: Anzeige der letzten Änderung

      Hallo Dexter und Sven,

      besten Dank für die Hinweise der Anzeigefehler des Footers innerhalb von i-doit.
      Dieses Verhalten ist bereits bekannt und wird mit der kommenden i-doit-Version 1.9.2 behoben sein.

      posted in Entwicklung
      M
      mike.vogel