Cognitive Systems WiFi Motion App-Cloud API (v1-5-x)

App Cloud APIs are used by mobile applications.

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/

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 [BETA]

Operations

Zone Priority [BETA]

Operations

Universal Alerting

Operations

Meta

Operations

Administration

Operations

Paginate Networks

Request

Retrieve paginated array of ALL networks in cloud.

Path
page_numberstringrequired

current page number

count_numberstringrequired

Number of items per page

Default 25
Query
onlineboolean

Filter returning networks by online status.

orderstring

Sort returning networks by network id

curl -i -X GET \
  'https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/internal/networks/{page_number}/{count_number}?online=true&order=string' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Bodyapplication/jsonArray [
network_idinteger
external_idinteger
network_namestring
onlineboolean
]
Response
application/json
[ { "network_id": 1, "external_id": 219, "network_name": "wifi", "online": true }, { "network_id": 2, "external_id": 2, "network_name": "99999", "online": true }, { "network_id": 3, "external_id": 1028, "network_name": "Test", "online": true } ]

Invite new user

Request

Sends network invitation email to specified email for the given network.

Bodyapplication/json
network_idintegerrequired
Example: 3
emailstring(email)required
Example: "john.smith@cognitivesystems.com"
curl -i -X POST \
  https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/internal/invite \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "network_id": 3,
    "email": "john.smith@cognitivesystems.com"
  }'

Responses

Bodyapplication/json
idinteger
Example: 1
network_idinteger
Example: 3
emailstring
Example: "john.smith@cognitivesystems.com"
created_atstring
Example: "2020-10-06T18:57:59.181Z"
updated_atstring
Example: "2020-10-06T18:57:59.181Z"
Response
application/json
{ "id": 1, "network_id": 3, "email": "john.smith@cognitivesystems.com", "created_at": "2020-10-06T18:57:59.181Z", "updated_at": "2020-10-06T18:57:59.181Z" }

Reset Out of Boxing

Request

Reset out of boxing by removing members from network.

Resets network's latitude, longitude and address and updates timezone to Eastern Time.

Path
network_idinteger>= 1required
curl -i -X PATCH \
  'https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/internal/oob/{network_id}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

OK