T-IA ConnectAPI V1

API Reference

Välkommen till T-IA Connects API-dokumentation. Detta REST API gör det möjligt att interagera direkt med Siemens TIA Portal och möjliggör fullständig automatisering av dina ingenjörsarbetsflöden via vanliga HTTP-förfrågningar.

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

Viktigaste funktioner

Nativ integration

Direktanslutning till Openness API utan komplexiteten hos proprietära DLL-filer.

Realtidsåterkoppling

Övervaka kompilering och nedladdningar via WebSockets och Jobs API.

Headless-automatisering

Utformat för CI/CD-pipelines och industriella servermiljöer.

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