Map Settings 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
Responses
200
OK
*/*
400
Bad Request
*/*
403
Forbidden
*/*
404
Not Found
*/*
409
Conflict
*/*
500
Internal Server Error
*/*
get
/api/map/settingsGET /api/map/settings HTTP/1.1
Host: inscada.cloud
X-Space: YOUR_API_KEY
Accept: */*
{
"creationDate": "2025-11-22T23:42:24.568Z",
"lastModifiedBy": "text",
"createdBy": "text",
"lastModifiedDate": "2025-11-22T23:42:24.568Z",
"id": "text",
"weatherApiKey": "text",
"mapApiKey": "text"
}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
Body
creationDatestring · date-timeRead-onlyOptional
lastModifiedBystringRead-onlyOptional
createdBystringRead-onlyOptional
lastModifiedDatestring · date-timeRead-onlyOptional
idstringOptional
weatherApiKeystring · max: 255Required
mapApiKeystring · max: 255Required
Responses
204
No Content
400
Bad Request
*/*
403
Forbidden
*/*
404
Not Found
*/*
409
Conflict
*/*
500
Internal Server Error
*/*
put
/api/map/settingsPUT /api/map/settings HTTP/1.1
Host: inscada.cloud
X-Space: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"id": "text",
"weatherApiKey": "text",
"mapApiKey": "text"
}No content
Last updated