Once a user is authenticated, Uthentic provides simple data storage developers can use to store and retreive user account data. There is no set up or configuration requried to use this feature. Data is securely stored on Uthentic's servers, and is only accessible by the user.
//read data, default to empty array if there is no data
var myToDos = await uthentic.read("todos") || [];
//write data
await uthentic.write("todos", myToDos);
Once your included storage or transfer quota is exceeded, you will be charged for additional data used. Prices vary by account level.
Sandbox