App Cloud APIs are used by mobile applications.
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/
https://docs.cognitivesystems.com/api/v1/
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/users/{id}
https://docs.cognitivesystems.com/api/v1/users/{id}
curl -i -X DELETE \
'https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/users/{id}?delete_claimed_network=true' \
-H 'Authorization: YOUR_API_KEY_HERE'
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/member_invites
https://docs.cognitivesystems.com/api/v1/member_invites
curl -i -X POST \
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/member_invites \
-H 'Content-Type: application/json' \
-d '{
"network_id": "string",
"emails": [
"string"
]
}'
{ "failed_emails": [ "string" ] }
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/password_resets
https://docs.cognitivesystems.com/api/v1/password_resets
curl -i -X POST \
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/password_resets \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"email": "string"
}'
{ "id": 0, "email": "string", "first_name": "string", "last_name": "string", "username": "string", "confirmed_at": "string", "created_at": "string", "updated_at": "string" }