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/confirmation_mails
https://docs.cognitivesystems.com/api/v1/confirmation_mails
curl -i -X POST \
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/confirmation_mails \
-H 'Authorization: YOUR_API_KEY_HERE'
After the user receives a confirmation email. This link should open the app, and pass the included token to this User Confirmation GET request.
A successful response means that the account associated with the token/email is now confirmed, and can be used for OOB or view network as a member.
Note: This is NOT the same token as was returned by the #endpoint:u8SLn5ebDpLA96m7B endpoint. They are both jwt tokens with the same format but they have different token audience, expiry and payload data.
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/confirmations
https://docs.cognitivesystems.com/api/v1/confirmations
curl -i -X GET \
'https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/confirmations?token=string' \
-H 'Authorization: YOUR_API_KEY_HERE'
{ "id": 0, "email": "string", "first_name": "string", "last_name": "string", "username": "string", "confirmed_at": "string", "created_at": "string", "updated_at": "string" }
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/confirmations
https://docs.cognitivesystems.com/api/v1/confirmations
curl -i -X POST \
https://docs.cognitivesystems.com/_mock/assets/specs/app-cloud/v1-5-x/confirmations \
-H 'Authorization: YOUR_API_KEY_HERE'