Make Bridge API method (preferred)
The Make Bridge API implementation method offers you two options to integrate Bridge into your product using the Make Bridge API as the integration interface.
Option 1: Integration with a pre-built component
In order to shorten the time to integration, we created a pre-built, front-end component and back-end implementation example.
The front-end component can be embedded in your application to provide a basic user experience, while the back-end example ensures secure communication with the Make Bridge API.
Front-end component and example
portal-integrations.js - This is the main component that can be included anywhere in your own application HTML. The component is downloaded from Make Bridge servers directly.
index.html - Example code showing how to incorporate portal-integrations.js in your HTML code.
Back-end example
index.ts - Example integration using Node.js and a proxy pattern that works directly with the portal-integrations.js component.
Option 2: Direct integration with the Make Bridge API
This option uses direct integration with the Make Bridge API and gives you a lot of style and logic customizations. The Make Bridge API can be found at the following address:
YOUR_MAKE_ZONE_URL(eu1.make.com)/portal/api/bridge/
Example of the direct Make Bridge API implementation:
Security Considerations
Always use HTTPS for all communications between your frontend, backend, and Make Bridge.
Store your Make Bridge secret securely on your backend and never expose it to the frontend unless used for testing purposes.
Implement proper authentication and authorization mechanisms in your backend to ensure only authorized users can access Make Bridge functionalities.
After completing the integration, thoroughly test all functionalities. If you encounter any issues or have questions during the beta testing phase, please contact us directly.
Last updated