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

Request

The API supports two storage areas:

  • network: a storage area that is shared by all network users, writable by the owner but only readable by a member
  • user: a read/write storage area that is only visible to the current user (member or owner)
Security
Authorization
Bodyapplication/jsonrequired
networkobject
Example: {"config":true}
userobject
Example: {"some storage":"for only the user"}
curl -i -X PATCH \
  https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/meta \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "network": {
      "config": true
    },
    "user": {
      "some storage": "for only the user"
    }
  }'

Responses

OK

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

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" }
Operations