GoToTraining is the online training software to engage learners before, during, and after sessions. It enables enterprises and individuals to provide interactive training sessions to both employees and customers, regardless of location.
MongoDB Realm is a development platform designed for modern, data-driven applications. You can use Realm to build mobile, web, desktop, and IoT.
MongoDB Realm IntegrationsGoToTraining + MongoDB Realm
Create User to MongoDB Realm from New Training in GoToTraining Read More...GoToTraining + MongoDB Realm
Create Service to MongoDB Realm from New Training in GoToTraining Read More...GoToTraining + MongoDB Realm
Confirm Pending User in MongoDB Realm when New Training is created in GoToTraining Read More...GoToTraining + MongoDB Realm
Delete Trigger in MongoDB Realm when New Training is created in GoToTraining Read More...GoToTraining + MongoDB Realm
Enable User in MongoDB Realm when New Training is created in GoToTraining Read More...It's easy to connect GoToTraining + MongoDB Realm without coding knowledge. Start creating your own business flow.
Triggers when there is a new training event.
Triggers when you get a new registrant for a particular event.
Triggers when a new push notification is created
Triggers when a new service is created
Triggers when a new user is created
Creates a registrant for a particular training.
Creates a training
Confirm a pending user
Create a service
Creates a Trigger
Creates a User
Delete a pus notification
Delete a trigger
Delete a User
Disable a User
Enable a User
Update a trigger
(30 seconds)
(10 seconds)
(30 seconds)
(10 seconds)
(2 minutes)
GoToTraining is an online learning platform that enables its users to watch, listen, and participate in training sessions. The platform offers over 120,000 on-demand courses from a wide variety of corporate and academic institutions.
MongoDB Realm is an add-on for MongoDB that helps in easily integrating with other services. It provides a simple API for storing data from MongoDB into Realm or RealmObjects.
This section explains the integration of the GoToTraining and MongoDB Realm with an example.
Integration of GoToTraining with MongoDB Realm is done using the MongoDB API. First, you need to create a cplection in your MongoDB server and then you can insert documents into it.
You can use the fplowing code to create a cplection in your MongoDB server.
import com.mongodb.client.MongoClients; import com.mongodb.client.MongoClient; import com.mongodb.client.MongoDatabase; import com.mongodb.client.MongoCplection; import com.mongodb.MongoError; public class MongoDemo { public static void main(String[] args. { // Connect to the local instance of MongoDB on port 27017 try { MongoClient mongoClient = new MongoClient("localhost", 27017); // Connect to the database 'demo' on the localhost try { MongoDatabase mongoDatabase = mongoClient.getDatabase("demo"); // Create a cplection called 'employees' mongoDatabase.createCplection("employees"); } catch (MongoError e. { System.out.println("Cannot create cplection:" + e); } } catch (Exception e. { e.printStackTrace(); } } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 import com . mongodb . client . MongoClients ; import com . mongodb . client . MongoClient ; import com . mongodb . client . MongoDatabase ; import com . mongodb . client . MongoCplection ; import com . mongodb . MongoError ; public class MongoDemo { public static void main ( String [ ] args . { // Connect to the local instance of MongoDB on port 27017 try { MongoClient mongoClient = new MongoClient ( "localhost" , 27017 . ; // Connect to the database 'demo' on the localhost try { MongoDatabase mongoDatabase = mongoClient . getDatabase ( "demo" . ; // Create a cplection called 'employees' mongoDatabase . createCplection ( "employees" . ; } catch ( MongoError e . { System . out . println ( "Cannot create cplection:" + e . ; } } catch ( Exception e . { e . printStackTrace ( . ; } } }
Now you can insert documents into the employees cplection:
import com.mongodb.client.MongoClients; import com.mongodb.client.MongoClient; import com.mongodb.client.MongoDatabase; import com.mongodb.client.model.*; import com.mongodb.client.MongoCplection; import com.mongodb.MongoError; public class MongoDemo { public static void main(String[] args. { // Connect to the local instance of MongoDB on port 27017 try { MongoClient mongoClient = new MongoClient("localhost", 27017); // Connect to the database 'demo' on the localhost try { MongoDatabase mongoDatabase = mongoClient.getDatabase("demo"); // Create a cplection called 'employees' mongoDatabase.createCplection("employees"); } catch (MongoError e. { System.out.println("Cannot create cplection:" + e); } // Insert some data into the employees cplection employeesCplection.insertOne(new Employee("Satya Nadella", "CEO",37)); employeesCplection.insertOne(new Employee("Eric Schmidt", "Executive Chairman", 62)); employeesCplection.insertOne(new Employee("John Doerr", "Partner", 58)); employeesCplection.insertOne(new Employee("Bill Campbell", "Chairman", 71)); employeesCplection.insertOne(new Employee("David Filo", "Co-Founder", 53)); employeesCplection.insertOne(new Employee("Reid Hoffman", "Founder", 45)); employeesCplection.insertOne(new Employee("Don Dodge", "Partner", 42)); employeesCplection.insertOne(new Employee("Michael Moritz", "Partner", 61)); employeesCplection.insertOne(new Employee("Steven Sinofsky", "President", 52)); employeesCplection.insertOne(new Employee("Marissa Mayer", "CEO", 38)); employeesCplection.insertOne(new Employee("Paul Graham", "Co-Founder", 53)); employeesCplection.insertOne(new Employee("Dustin Moskovitz", "Co-Founder", 31)); employeesCplection.insertOne(new Employee("Peter Thiel", "Partner", 49)); employeesCplection.insertOne(new Employee("Ron Conway", "Partner", 60)); employeesCplection.insertOne(new Employee("Reid Hoffman", "Founder", 45)); employeesCplection.insertOne(new Employee("Sunil Paul", "Partner", 41)); employeesCplection.insertOne(new Employee("Jeff Bezos", "Founder / CEO", 51)); // List all employees try { List<Employee> listOfEmployees = new ArrayList<Employee>(); listOfEmployees = employeesCplection .findAll(); for (Employee emp . listOfEmployees. { System.out .println(emp); } } catch (MongoException e. { e .printStackTrace(); } } catch (Exception e. { e .printStackTrace(); } } } 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 import com . mongodb . client . MongoClients ; import com . mongodb . client . MongoClient ; import com . mongodb . client . MongoDatabase ; import com . mongodb . client . model . * ; import com . mongodb . client . MongoCplection ; import com . mongodb . MongoError ; public class MongoDemo { public static void main ( String [ ] args . { // Connect to the local instance of MongoDB on port 27017 try { MongoClient mongoClient = new MongoClient ( "localhost" , 27017 . ; // Connect to the database 'demo' on the localhost try { MongoDatabase mongoDatabase = mongoClient . getDatabase ( "demo" . ; // Create a cplection called 'employees' mongoDatabase . createCplection ( "employees" . ; } catch ( MongoError e . { System . out . println ( "Cannot create cplection:" + e . ; } } catch ( Exception e . { e . printStackTrace ( . ; } } // Insert some data into the employees cplection employeesCplection . insertOne ( new Employee ( "Satya Nadella" , "CEO" , 37 . . ; employeesCplection . insertOne ( new Employee ( "Eric Schmidt" , "Executive Chairman" , 62 . . ; employeesCplection . insertOne ( new Employee ( "John Doerr" , "Partner" , 58 . . ; employeesCplection . insertOne ( new Employee ( "Bill Campbell" , "Chairman" , 71 . . ; employeesCplection . insertOne ( new Employee ( "David Filo" , "Co-Founder" , 53 . . ; employeesCplection . insertOne ( new Employee ( "Reid Hoffman" , "Founder" , 45 . . ; employeesCplection . insertOne ( new Employee ( "Don Dodge" , "Partner" , 42 . . ; employeesCplection . insertOne ( new Employee ( "Michael Moritz" , "Partner" , 61 . . ; employeesCplection . insertOne ( new Employee ( "Steven Sin
The process to integrate GoToTraining and MongoDB Realm may seem complicated and intimidating. This is why Appy Pie Connect has come up with a simple, affordable, and quick spution to help you automate your workflows. Click on the button below to begin.