if (GUI.Button (new Rect (50, 200, 200, 30), "Set Up Money")) {
storageService = sp.BuildStorageService (); //building StorageService.
JSONClass json = new JSONClass();
App42API.SetLoggedInUser(PlayerPrefs.GetString("userName"));
json.Add("Money", PlayerPrefs.GetInt("Money"));
storageService.InsertJSONDocument(dbName, collectionName, json, callBack);
so when I click the button I don't get an error and it runs the OnSuccess() method from callBack but when I go into my database on the cloud it says I havn't saved any app data
http://imgur.com/2HlD7WC