The Interface API
Connect your systems. Expose their actions.
1const app = await rotundra.connect({ 2 source: "erp", 3 resources: ["customers", "orders"], 4 permissions: "inherit" 5}); 6 7await app.actions.run("orders.create", { 8 customer: "acme", 9 items: cart.items 10});
01/Connect
Securely connect to the systems you already run.
02/Build
Expose real actions and data through a clean, flexible API.
03/Execute
Power modern frontends with your business logic.