T-IA ConnectAPI V1

API Reference

Willkommen in der API-Dokumentation von T-IA Connect. Diese REST API ermöglicht die direkte Interaktion mit Siemens TIA Portal und erlaubt die vollständige Automatisierung Ihrer Engineering-Workflows über Standard-HTTP-Anfragen.

316endpoints documented
across 22 categories

Base URL

All endpoints are prefixed with:

http://localhost:9000/api

Content Type

Requests and responses are formatted as:

application/json

Hauptfunktionen

Native Integration

Direkte Verbindung zur Openness API ohne proprietäre DLL-Komplexität.

Echtzeit-Rückmeldung

Überwachung von Kompilierung und Downloads über WebSockets und die Jobs API.

Headless-Automatisierung

Entwickelt für CI/CD-Pipelines und industrielle Serverumgebungen.

Quick Start

Test that the API is running with a simple health check:

Terminal
curl http://localhost:9000/api/health -H "X-API-KEY: YOUR_API_KEY"

Expected response:

response.json
{
  "success": true,
  "data": {
    "healthy": true,
    "apiVersion": "1.0.0"
  }
}