Skip to content
IT asset management

Integrations & APIs: inventory data in the systems you already work in.

LOGINventory reads and writes via open integrations: through the REST API, PowerShell script, or CSV import. Ready-made connections for MDM systems, ITSM, and CMDB are included. You can add your own systems via Custom Scan Scripts.

curl · loginventory.local/api/v1/assets 200 OK · 87 ms
GET /api/v1/assets?type=Server
Authorization: Bearer ••••••••

200 OK
[
  {
    "hostname": "SRV-FILE-01",
    "os": "Windows Server 2022",
    "cpu": "Xeon E-2336",
    "ram_gb": 64,
    "last_scan": "2026-04-29T09:47:12Z",
    "software_count": 42
  },
  ...
]
What you connect to it

The directions inventory data flows.

Out. As a data source

CMDB, ITSM, dashboards.

LOGINventory delivers up-to-date inventory data to ticketing systems, configuration databases, and reporting stacks: JSON, CSV, or a PowerShell pipeline.

In. As a data sink

Even what the scanner can’t reach.

HR data, procurement properties, MDM inventories, your own special sources: synchronizable via REST or read in through Custom Scan Scripts.

Automated

PowerShell triggers, REST delivers.

Write scheduled reports to shares, report changes into the ticket system via script: no manual steps in between.

Integration types

This is how inventory data flows into your systems.

REST for modern stacks, PowerShell for Windows automation, CSV for migrations and periodic synchronization. All paths access the same data foundation.

REST API

JSON · API key

HTTP based, read and write access. CMDB sync, ITSM connection, external dashboards with live data.

PowerShell

COM object · pipeline

Navigate queries like a file system (Dir, CD), CSV export, conditional triggers.

MCP server

Structured data access via protocol

/api/mcp/describe and /api/mcp/execute: machine-readable metadata and queries without a prior export.

CSV

Import · export

Scheduled or action triggered. Good for migrations, periodic syncs from legacy systems, or where no API endpoint exists.

Third-party integrations

Direct connections. No code of your own.

Mobile Device Management (MDM)
  • Microsoft Intune
  • baramundi
  • APPTEC360
  • Sophos Mobile
ITSM & CMDB
  • Kyberna ky2help
  • iET Solutions iET ITSM
  • helpLine
  • i-net HelpDesk
Via OpenCelium workflows
  • i-doit
  • Jira Service Desk
  • OTRS
  • PRTG

OpenCelium is a separate open-source platform with ready-made bidirectional connectors for CMDB (i-doit), ticketing (Jira Service Desk, OTRS), and monitoring (PRTG). It requires its own instance and configuration. No custom coding is required.

Custom Scan Scripts

What the standard scanner can’t reach. Write it yourself.

Proprietary APIs, specialized hardware, niche cloud services, warranty data: your own PowerShell scripts run via the Remote Scanner and write directly into the LOGINventory data format (.inv).

Use cases from the documentation: thin-client management systems, additional MDMs, cloud license data, warranty lookups, any API-based system.

github.com/loginventory/custom-scan-scripts →
scan-warranty-lookup.ps1
# Query the warranty API
$serial = "AB12CD34"
$result = Invoke-RestMethod `
  -Uri "https://api.vendor.com/warranty" `
  -Body @{ serial = $serial }

Write-InvProperty `
  -Asset $asset `
  -Name "Warranty until" `
  -Value $result.expiry