Skip to content

Cognitive Systems App Cloud API

The App Cloud APIs expose the Core API endpoints, but with the addition of adding per user authentication and authorization. For example, you may choose to build with App Cloud APIs when developing for a mobile platform.

Download OpenAPI description
Languages
Servers
Mock server
https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/
https://docs.cognitivesystems.com/api/v1/

Overview

Operations

Out of Box

Operations

Logging In

Operations

Geofencing

Operations

Account Management

Operations

Network Settings

Operations

Sounding v2

Operations

Events, History, and Visualizations

Operations

Household Insights

Operations

Zone Priority

Operations

Universal Alerting

Operations

Meta

Operations

Delete Meta Storage

Request

Deletes network meta storage. Only the owner can perform this action.

Security
Authorization
curl -i -X DELETE \
  https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/meta \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Success

Get Meta of UserBeta

Request

Shows the user's meta storage

Security
Authorization
curl -i -X GET \
  https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/user/meta \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
object(Root Type for get_user_meta)
Response
application/json
{ "Sample_key": "Sample_value" }

Patch Meta User StorageBeta

Request

Appends or overwrites the user meta storage.

Security
Authorization
Query
overwriteboolean

Setting overwrite to true will replace the existing data with the values specified in the Body. Otherwise, the data specified in the Body will append to the existing data.

Bodyapplication/json
object(Root Type for patch_user_meta)
curl -i -X PATCH \
  'https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/user/meta?overwrite=true' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "Sample_key": "Sample_value"
  }'

Responses

Created

Sensor Integration

Operations