Skip to content

Cognitive Systems App Cloud API

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/api/app_cloud/

https://docs.cognitivesystems.com/api/v1/

Operations
Operations
Operations
Operations
Operations
Operations
Operations

Events, History, and Visualizations

Operations
Operations
Operations
Operations
Operations
Operations

Request

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

Security
Authorization
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/api/app_cloud/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" }

Request

Reset out of boxing by removing members from network.

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

Security
Authorization
Path
network_idinteger>= 1required
curl -i -X PATCH \
  'https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/internal/oob/{network_id}' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

OK