Erstellen eines neuen Projekts - Manual - Industrial Edge - Industrial Edge - Industrial Edge - Documentation of the Industrial Edge Platform - IEM - Hub - Industrial - Device - IED - Edge - IEH

Industrial Edge Platform Operation - APIs & Referenzen

Product
Industrial Edge
Product Version
v25.04
Edition
04/2025
Language
de-DE

Verwenden Sie diese Anforderung, um ein neues Projekt zu erstellen:

curl -i -X GET \
-H "Authorization:<your-authorization-token>" \
'https://<your-iem-url>/portal/api/v1/projects' \
--data-raw '{
    "name": "test",
    "description": "test",
    "companyId": "c536d7f53d144978a4b1020c418f2008"
}'

Eine erfolgreiche Antwort sieht wie folgt aus:

{
    "id": "4eac3c5dfb13448e923874bb5354de7b",
    "name": "test",
    "description": "test",
    "userId": "88b0d08729b94a949ad8f4ae1abf60c7",
    "companyId": "c536d7f53d144978a4b1020c418f2008"
}