T-IA ConnectAPI V1

API Reference

欢迎使用 T-IA Connect API 文档。此 REST API 允许您直接与 Siemens TIA Portal 交互,通过标准 HTTP 请求实现工程工作流的完整自动化。

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

核心功能

原生集成

直接连接 Openness API,无需处理专有 DLL 的复杂性。

实时反馈

通过 WebSockets 和 Jobs API 监控编译和下载过程。

无界面自动化

专为 CI/CD 流水线和工业服务器环境设计。

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