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

Request

Security
Authorization
Path
idinteger>= 1required
Bodyapplication/json
emailstring
passwordstring
first_namestring
last_namestring
curl -i -X PUT \
  'https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/users/{id}' \
  -H 'Authorization: YOUR_API_KEY_HERE' \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "string",
    "password": "string",
    "first_name": "string",
    "last_name": "string"
  }'

Responses

Bodyapplication/json
idinteger
usernamestring
emailstring
first_namestring
last_namestring
created_atstring
updated_atstring
confirmed_atstring or null
Response
application/json
{ "id": 0, "username": "string", "email": "string", "first_name": "string", "last_name": "string", "created_at": "string", "updated_at": "string", "confirmed_at": "string" }

Request

Security
Authorization
Path
idinteger>= 1required
Query
delete_claimed_networkboolean

Defaults to false. Delete the network associated with the user. If the user is a network owner, the network is completely deleted.

curl -i -X DELETE \
  'https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/users/{id}?delete_claimed_network=true' \
  -H 'Authorization: YOUR_API_KEY_HERE'

Responses

Response
No content

Request

Sends an invite email to the provided list, the link in the email should take the invited users to the app, where they can create an account.

NOTE: Only the network owner may send Network Member Invites.

Bodyapplication/json
network_idstringrequired
emailsArray of stringsrequired
curl -i -X POST \
  https://docs.cognitivesystems.com/_mock/assets/specs/api/app_cloud/member_invites \
  -H 'Content-Type: application/json' \
  -d '{
    "network_id": "string",
    "emails": [
      "string"
    ]
  }'

Responses

Bodyapplication/json
failed_emailsArray of strings
Response
application/json
{ "failed_emails": [ "string" ] }
Operations
Operations

Events, History, and Visualizations

Operations
Operations
Operations
Operations
Operations
Operations