Cognitive Systems App Cloud API
The AppCloud APIs are used by mobile applications to communicate with the Cognitive Systems Infrastructure.
https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/
https://docs.cognitivesystems.com/api/v1/
Request
Initialize an integration. If integrations_enable
is true
, an account is created in the 3rd Reality Cloud and App Cloud is returned a userThingName
which is necessary for HUB bluetooth initialization. This API can be called with intergrations_enabled
: false
, and then no userThingName
will be returned. Setting integrations_enabled
to false will not remove or make any changes to an existing integration.
- Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/sensors/integrations
https://docs.cognitivesystems.com/api/v1/sensors/integrations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/sensors/integrations?show_account=false' \
-H 'Content-Type: application/json' \
-d '{
"integrations_enable": true,
"oob_phase": "string"
}'
{ "integrations": { "id": 18, "integrations_enable": true, "network_id": 1, "external_id": 4, "user_id": 101, "userThingName": "USER_c9d3c1ee5cd2458da1843095422f4141", "oob_phase": "", "created_at": "2025-06-06T16:01:07.715Z", "updated_at": "2025-06-06T16:01:07.715Z", "external_account": "CSC_0001M4682FCQM9HCD3GZRSMGSV@wifimotion.ca", "external_email": "0001M4682FCQM9HCD3GZRSMGSV@wifimotion.ca", "external_password": "CSC.01JX33CD6KBWVMNM91W6QMW2Z4", "external_token": "eyJhY2....4c6d0773" } }
- Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/sensors/integrations
https://docs.cognitivesystems.com/api/v1/sensors/integrations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/sensors/integrations?show_account=false'
{ "integrations": { "id": 18, "integrations_enable": true, "network_id": 1, "external_id": 4, "user_id": 101, "userThingName": "USER_c9d3c1ee5cd2458da1843095422f4141", "oob_phase": "", "created_at": "2025-06-06T16:01:07.715Z", "updated_at": "2025-06-06T16:01:07.715Z" } }
- Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/sensors/integrations
https://docs.cognitivesystems.com/api/v1/sensors/integrations
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PATCH \
https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/sensors/integrations \
-H 'Content-Type: application/json' \
-d '{
"integrations_enable": true,
"oob_phase": "started"
}'