Cognitive Systems WiFi Motion AppCloud API (v1-5-x)
The AppCloud APIs are used by mobile applications to communicate with the Cognitive Systems Infrastructure.
Download OpenAPI description
Languages
Servers
Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/
https://docs.cognitivesystems.com/api/v1/
- Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/network_scene_configs/{id}
https://docs.cognitivesystems.com/api/v1/network_scene_configs/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/network_scene_configs/{id}' \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"excessive_motion_seconds": 0,
"excessive_motion_enabled": true,
"auto_switching_enabled": true,
"guardian_enabled": true,
"guardian_weekday_start_time_hours": 0,
"guardian_weekday_start_time_minutes": 0,
"guardian_weekday_end_time_hours": 0,
"guardian_weekday_end_time_minutes": 0,
"guardian_weekend_start_time_hours": 0,
"guardian_weekend_start_time_minutes": 0,
"guardian_weekend_end_time_hours": 0,
"guardian_weekend_end_time_minutes": 0
}'
Response
application/json
{ "id": 0, "excessive_motion_enabled": true, "excessive_motion_seconds": 0, "network_id": 0, "created_at": "string", "updated_at": "string", "auto_switching_enabled": true, "guardian_enabled": true, "guardian_weekday_start_time_hours": 0, "guardian_weekday_start_time_minutes": 0, "guardian_weekday_end_time_hours": 0, "guardian_weekday_end_time_minutes": 0, "guardian_weekend_start_time_hours": 0, "guardian_weekend_start_time_minutes": 0, "guardian_weekend_end_time_hours": 0, "guardian_weekend_end_time_minutes": 0 }
- Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/network_motion_config
https://docs.cognitivesystems.com/api/v1/network_motion_config
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/network_motion_config?network_id=0' \
-H 'Authorization: YOUR_API_KEY_HERE'
Response
application/json
{ "cooldown": 200, "sensitivity_level": "low" }
- Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/network_motion_config
https://docs.cognitivesystems.com/api/v1/network_motion_config
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/network_motion_config \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"network_id": 6,
"cooldown": 300,
"sensitivity_level": "normal"
}'
Response
application/json
{ "cooldown": 300, "sensitivity_level": "low" }