Map Controller

get
Authorizations
ins_access_tokenstringRequired

Access token provided as a cookie named 'ins_access_token'. This token is obtained after successful login and is valid for x minutes. It can be refreshed using the ins_refresh_token cookie at the /refresh endpoint.

X-SpacestringRequired

Required active space header

Path parameters
projectIdstringRequired
Responses
200

OK

*/*
get
/api/map/{projectId}/variables
GET /api/map/{projectId}/variables HTTP/1.1
Host: inscada.cloud
X-Space: YOUR_API_KEY
Accept: */*
[
  {
    "name": "text",
    "variableId": "text",
    "varOrder": 1
  }
]
put
Authorizations
ins_access_tokenstringRequired

Access token provided as a cookie named 'ins_access_token'. This token is obtained after successful login and is valid for x minutes. It can be refreshed using the ins_refresh_token cookie at the /refresh endpoint.

X-SpacestringRequired

Required active space header

Path parameters
projectIdstringRequired
Bodyobject[]
namestringOptional
variableIdstringRequired
varOrderinteger · int32Optional
Responses
200

OK

No content

put
/api/map/{projectId}/variables
PUT /api/map/{projectId}/variables HTTP/1.1
Host: inscada.cloud
X-Space: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 50

[
  {
    "name": "text",
    "variableId": "text",
    "varOrder": 1
  }
]

No content

Last updated