T-IA ConnectAPI V1

API Reference

Welkom in de API-documentatie van T-IA Connect. Deze REST API stelt u in staat rechtstreeks te communiceren met Siemens TIA Portal en biedt volledige automatisering van uw technische workflows via standaard HTTP-verzoeken.

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

Belangrijkste mogelijkheden

Native integratie

Directe verbinding met de Openness API zonder de complexiteit van propriëtaire DLL's.

Realtime feedback

Bewaak compilaties en downloads via WebSockets en de Jobs API.

Headless automatisering

Ontworpen voor CI/CD-pipelines en industriële serveromgevingen.

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"
  }
}